diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 823b2b5..71d0160 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -8,15 +8,18 @@ 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"; +import { Inter_Tight } 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 dmSans = DM_Sans({ - variable: "--font-dm-sans", + +const interTight = Inter_Tight({ + variable: "--font-inter-tight", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export default function RootLayout({ @@ -27,7 +30,7 @@ export default function RootLayout({ return ( - + {children}