From adab2a47f28ba0245b99652e3a207b4081fc92cf Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 09:46:16 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ff2ea1d..afeb958 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -2,6 +2,7 @@ import type { Metadata } from "next"; import { Inter } from "next/font/google"; import { DM_Sans } from "next/font/google"; import { Libre_Baskerville } from "next/font/google"; +import { Montserrat } from "next/font/google"; import "./styles/variables.css"; import "./globals.css"; @@ -10,10 +11,10 @@ export const metadata: Metadata = { title: "Elegant Restaurant", description: "Experience fine dining at its finest"}; -const libreBaskerville = Libre_Baskerville({ - variable: "--font-libre-baskerville", + +const montserrat = Montserrat({ + variable: "--font-montserrat", subsets: ["latin"], - weight: ["400", "700"], }); const inter = Inter({ variable: "--font-inter", @@ -27,7 +28,7 @@ export default function RootLayout({ }) { return ( - {children} + {children}