aboutsummaryrefslogtreecommitdiffstats
path: root/frontend/src/app/layout.tsx
blob: 651acc8e48c2bc712f631a47c990fa0aa448e632 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import type { Metadata } from "next";
import "./globals.css";
import { Toaster } from "@/components/ui/sonner";
import { ThemeProvider } from "@/components/theme-provider";

export const metadata: Metadata = {
  title: "blcklst - not everyone get blcklsted",
  description: "not everyone gets blcklsted - discover carefully curated fashion pieces that define modern elegance.",
};

export default function RootLayout({
  children,
}: Readonly<{
  children: React.ReactNode;
}>) {
  return (
    <html lang="en" suppressHydrationWarning>
      <head>
        <link 
          href="https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap" 
          rel="stylesheet" 
        />
        {/* Preload both logo variants for instant theme switching */}
        <link 
          rel="preload" 
          href="/black-logo.png" 
          as="image" 
          type="image/png"
        />
        <link 
          rel="preload" 
          href="/white-logo.png" 
          as="image" 
          type="image/png"
        />
      </head>
      <body className="font-sans antialiased">
        <ThemeProvider
          attribute="class"
          defaultTheme="system"
          enableSystem
          disableTransitionOnChange
        >
          {children}
          <Toaster />
        </ThemeProvider>
      </body>
    </html>
  );
}