feat: implement light theme hero section with cloud background and updated header

This commit is contained in:
2025-10-20 16:20:51 +02:00
parent 75b660d81e
commit 2f3dea92a2
8 changed files with 188 additions and 6 deletions

View File

@@ -1,10 +1,10 @@
import { Footer } from '@/components/Footer'
import { Header } from '@/components/Header'
import { HeaderLight } from '@/components/HeaderLight'
export function Layout({ children }: { children: React.ReactNode }) {
return (
<>
<Header />
<HeaderLight />
<main className="flex-auto">{children}</main>
<Footer />
</>