feat: Reels plein écran mobile + MediaUploader dans l'admin
All checks were successful
CI / test (pull_request) Successful in 2m19s

This commit is contained in:
Claude Integration 2026-06-02 00:52:57 +00:00
parent 403e21fe0a
commit 701a1f02bd
3 changed files with 40 additions and 14 deletions

View file

@ -21,6 +21,8 @@ export async function SiteHeaderGuard() {
if (pathname.startsWith("/admin")) return null;
if (pathname === "/connexion" || pathname === "/inscription") return null;
// Mode immersif : on cache le header pour donner 100dvh aux Reels
if (pathname === "/decouvrir" || pathname.startsWith("/decouvrir/")) return null;
return <SiteHeader />;
}