From 36f548171b41b5a8e750484bfa238a29e7fd4200 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 25 Apr 2026 10:10:17 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) 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}