diff --git a/app/ClientLayout.tsx b/app/ClientLayout.tsx index 254cabb..c4011a8 100644 --- a/app/ClientLayout.tsx +++ b/app/ClientLayout.tsx @@ -5,10 +5,9 @@ import "./globals.css" import { Inter } from "next/font/google" import { useState, useEffect } from "react" import Sidebar from "./components/Sidebar" +import MobileHeader from "./components/MobileHeader" import MobileSidebar from "./components/MobileSidebar" -import BottomTabs from "@/components/nav/bottom-tabs" -import { usePathname } from "next/navigation" -import { Toaster } from "@/components/ui/toaster" +import BottomNav from "./components/BottomNav" const inter = Inter({ subsets: ["latin"] }) @@ -19,7 +18,6 @@ export default function ClientLayout({ }) { const [isMobile, setIsMobile] = useState(false) const [sidebarOpen, setSidebarOpen] = useState(false) - const pathname = usePathname() useEffect(() => { const checkMobile = () => { @@ -35,7 +33,7 @@ export default function ClientLayout({ return (
-