From f4ae6cdf433811986019736bbaf6d7bdd10fc141 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 09:39:22 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 91 +++++++++++++++++----------------------------- 1 file changed, 33 insertions(+), 58 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5bc7acf..1c48795 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,13 +1,18 @@ import type { Metadata } from "next"; import { Inter } from "next/font/google"; +import { DM_Sans } from "next/font/google"; import "./styles/variables.css"; import "./globals.css"; -const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { title: "Elegant Restaurant", description: "Experience fine dining at its finest"}; +const dmSans = DM_Sans({ + variable: "--font-dm-sans", + subsets: ["latin"], +}); + export default function RootLayout({ children, }: { @@ -15,7 +20,7 @@ export default function RootLayout({ }) { return ( - {children} + {children}