feat: add hide-on-scroll header and redesign hero with video background

This commit is contained in:
2025-10-21 16:45:54 +02:00
parent f44662829d
commit b46df781f8
9 changed files with 286 additions and 72 deletions

View File

@@ -5,6 +5,7 @@ export function Layout({ children }: { children: React.ReactNode }) {
return (
<>
<HeaderLight />
{children}
<main className="flex-auto">{children}</main>
<Footer />
</>