From 79bc7a0476c80a7fe24e023d9091dd091339bac0 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 23:07:29 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) 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} +