From 000385a6d2be17d78fdaf9ba11f53e44c8055fbf Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Mar 2026 01:50:35 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8eef3e2..d283041 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 { Lato } from "next/font/google"; +import { DM_Sans } from "next/font/google"; @@ -14,9 +15,10 @@ export const metadata: Metadata = { description: 'Experience authentic Mexican cuisine elevated to luxury dining. Award-winning margaritas, fresh guacamole, and unforgettable atmosphere. Reserve your table today.', }; -const lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], + +const dmSans = DM_Sans({ + variable: "--font-dm-sans", + subsets: ["latin"], }); export default function RootLayout({ @@ -27,7 +29,7 @@ export default function RootLayout({ return ( - + {children}