diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c32c956..40114d8 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -7,13 +7,15 @@ import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Nunito } from "next/font/google"; +import { DM_Sans } from "next/font/google"; export const metadata: Metadata = { title: 'VerdantVista | Bespoke Landscape & Garden Architecture', description: 'Transform your outdoor property with VerdantVista. We specialize in high-end landscape architecture, bespoke hardscaping, and intentional botanical curation.' }; -const nunito = Nunito({ - variable: "--font-nunito", + +const dmSans = DM_Sans({ + variable: "--font-dm-sans", subsets: ["latin"], }); @@ -25,7 +27,7 @@ export default function RootLayout({ return ( - + {children}