21 lines
444 B
TypeScript
21 lines
444 B
TypeScript
'use client'
|
|
|
|
import { usePathname } from "next/navigation";
|
|
import Navbar from "@/components/Navbar";
|
|
import Footer from "@/components/Footer";
|
|
|
|
export default function LayoutContent({ children }: { children: React.ReactNode }) {
|
|
const pathname = usePathname();
|
|
const isHome = pathname === "/";
|
|
|
|
return (
|
|
<>
|
|
<Navbar />
|
|
<div className="flex-1">
|
|
{children}
|
|
</div>
|
|
{!isHome && <Footer />}
|
|
</>
|
|
);
|
|
}
|