From 8b7eb3206d0ed742f43c9a5517bd2e3be7315d72 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 09:44:30 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1c48795..ff2ea1d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,6 +1,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 "./styles/variables.css"; import "./globals.css"; @@ -8,8 +9,14 @@ import "./globals.css"; export const metadata: Metadata = { title: "Elegant Restaurant", description: "Experience fine dining at its finest"}; -const dmSans = DM_Sans({ - variable: "--font-dm-sans", + +const libreBaskerville = Libre_Baskerville({ + variable: "--font-libre-baskerville", + subsets: ["latin"], + weight: ["400", "700"], +}); +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); @@ -20,7 +27,7 @@ export default function RootLayout({ }) { return ( - {children} + {children}