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}