feat: Frutiger Aero redesign — glass panels, Aero shimmer, interaction moments
Some checks failed
lint / lint (push) Failing after 5m7s
test / unit (push) Successful in 16m24s
test / integration (push) Failing after 18m14s

This commit is contained in:
2026-05-16 14:55:51 +02:00
parent 7ce2901c2a
commit 32bfb00970
19 changed files with 549 additions and 1512 deletions

View File

@@ -4,6 +4,7 @@ import { AuthProvider } from "@/hooks/use-auth";
import { Toaster } from "@/components/ui/sonner";
import { Header } from "@/components/header";
import localFont from "next/font/local";
import Image from "next/image";
import InstallPrompt from "@/components/install-prompt";
export const metadata: Metadata = {
@@ -52,6 +53,14 @@ export default function RootLayout({
return (
<html lang="en">
<body className={`${frutiger.className} antialiased`}>
<Image
src="/bg1.avif"
alt=""
fill
priority
quality={85}
className="fixed inset-0 -z-10 object-cover object-center"
/>
<AuthProvider>
<Header />
<main className="flex-1">{children}</main>