27 lines
698 B
TypeScript
27 lines
698 B
TypeScript
|
|
'use client';
|
||
|
|
|
||
|
|
import { usePathname } from 'next/navigation';
|
||
|
|
import { Header } from './Header';
|
||
|
|
import { Footer } from './Footer';
|
||
|
|
|
||
|
|
export function RootLayoutClient({ children }: { children: React.ReactNode }) {
|
||
|
|
const pathname = usePathname();
|
||
|
|
const isAdminRoute = pathname?.startsWith('/admin');
|
||
|
|
|
||
|
|
if (isAdminRoute) {
|
||
|
|
// Admin routes render without header/footer
|
||
|
|
return <>{children}</>;
|
||
|
|
}
|
||
|
|
|
||
|
|
// Regular routes render with header/footer
|
||
|
|
return (
|
||
|
|
<>
|
||
|
|
<Header />
|
||
|
|
<main className="flex-1 max-w-[1600px] w-full mx-auto pb-8 sm:pb-12 px-4 sm:px-6 lg:px-8 overflow-hidden" style={{ paddingTop: '110px' }}>
|
||
|
|
{children}
|
||
|
|
</main>
|
||
|
|
<Footer />
|
||
|
|
</>
|
||
|
|
);
|
||
|
|
}
|