- Update about, contact, FAQ, forgot-password, lots, register, rules pages - Apply consistent styling with bg-gray-50 and modern cards - Update footer and layout with new design - Add gagnants (winners) page All pages now have consistent modern design matching homepage and dashboard 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
29 lines
762 B
TypeScript
29 lines
762 B
TypeScript
"use client";
|
|
|
|
import { usePathname } from "next/navigation";
|
|
import Header from "@/components/Header";
|
|
import Footer from "@/components/Footer";
|
|
|
|
export default function LayoutClient({ children }: { children: React.ReactNode }) {
|
|
const pathname = usePathname();
|
|
|
|
// Ne pas afficher Header/Footer dans l'espace admin et employé
|
|
const isAdminRoute = pathname?.startsWith("/admin");
|
|
const isEmployeRoute = pathname?.startsWith("/employe");
|
|
const isHomePage = pathname === "/";
|
|
|
|
if (isAdminRoute || isEmployeRoute) {
|
|
return <>{children}</>;
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<Header />
|
|
<main className={isHomePage ? "flex-1" : "flex-1 container mx-auto px-4 py-6 sm:px-6 lg:px-8"}>
|
|
{children}
|
|
</main>
|
|
<Footer />
|
|
</>
|
|
);
|
|
}
|