From 93cf6cf24aa66ce0cc21bf01bf8aef92e7505387 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 15:52:11 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 873475a..43ec49e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,6 +6,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { DM_Sans } from "next/font/google"; +import { Libre_Baskerville, Inter } from "next/font/google"; @@ -14,8 +15,10 @@ export const metadata: Metadata = { description: 'Discover Stilton Cafe - your late-night sanctuary with boho vibes, rustic charm, and the best naan turnovers. Open 12 PM - 4 AM in Vasant Kunj. Perfect for midnight cravings.', }; -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], + +const libreBaskerville = Libre_Baskerville({ + variable: "--font-libre-baskerville", subsets: ["latin"], + weight: ["400", "700"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], @@ -29,7 +32,7 @@ export default function RootLayout({ return ( - + {children}