diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5938f57..823b2b5 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 { Manrope } from "next/font/google"; +import { DM_Sans } from "next/font/google"; export const metadata: Metadata = { title: 'VogueGrid | Curated Fashion & Apparel Store', description: 'Discover the latest trends at VogueGrid. Shop our exclusive collection of premium clothing, from everyday essentials to statement pieces. Elevate your style today.', openGraph: { title: 'VogueGrid | Curated Fashion & Apparel Store', description: 'Discover the latest trends at VogueGrid. Shop our exclusive collection of premium clothing, from everyday essentials to statement pieces. Elevate your style today.', type: 'website' } }; -const manrope = Manrope({ - variable: "--font-manrope", + +const dmSans = DM_Sans({ + variable: "--font-dm-sans", subsets: ["latin"], }); @@ -25,7 +27,7 @@ export default function RootLayout({ return ( - + {children}