diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c8787e1..3aca369 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,11 +1,17 @@ import type { Metadata } from "next"; -import { Inter } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -const inter = Inter({ variable: "--font-inter", subsets: ["latin"] }); +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], +}); + +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], +}); export const metadata: Metadata = { - title: "Serene Studios", description: "Serene Studios explores the intersection of restraint, identity, and intentional creation."}; + title: "Serene Studios - Editorial Fashion & Design", description: "Serene Studios explores the intersection of restraint, identity, and intentional creation. Avant-garde fashion with conceptual rigor."}; export default function RootLayout({ children, @@ -14,7 +20,9 @@ export default function RootLayout({ }) { return ( - {children} + + {children} +