diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d82cf39..c6364de 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,5 +1,4 @@ import type { Metadata } from 'next'; -import { Cormorant_Garamond } from "next/font/google"; import './globals.css'; export const metadata: Metadata = { @@ -7,12 +6,6 @@ export const metadata: Metadata = { description: 'Discover exclusive luxury properties in Dubai curated for discerning buyers and investors.', }; -const cormorantGaramond = Cormorant_Garamond({ - variable: "--font-cormorant-garamond", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - export default function RootLayout({ children, }: { @@ -20,7 +13,7 @@ export default function RootLayout({ }) { return ( - + {children}