diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a473751..db9a0fb 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,11 +1,14 @@ import type { Metadata } from "next"; import { Inter } from "next/font/google"; +import "./styles/variables.css"; import "./globals.css"; -const inter = Inter({ subsets: ["latin"] }); +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], +}); export const metadata: Metadata = { - title: "Luxuria | Exclusive Premium Social Network", description: "Luxuria is the premier social network for discerning individuals. Share curated moments, connect authentically, and experience networking designed for refined taste."}; + title: "Luxuria - Exclusive Social Network", description: "Premium social networking platform for discerning individuals"}; export default function RootLayout({ children, @@ -14,7 +17,9 @@ export default function RootLayout({ }) { return ( -
{children} + + {children} + +