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}