From caf0d1ed987bb6965d1e6339a021d56292e704b2 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 25 Apr 2026 10:10:11 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 694e7bb..5938f57 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,20 +6,17 @@ import "@/lib/gsap-setup"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; +import { Manrope } from "next/font/google"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); 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", + subsets: ["latin"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -28,9 +25,7 @@ export default function RootLayout({ return ( - + {children}