From aed8958e467b3f8fee8c00f235471642d0928de1 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Feb 2026 09:08:22 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 154d308..d82cf39 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,4 +1,5 @@ import type { Metadata } from 'next'; +import { Cormorant_Garamond } from "next/font/google"; import './globals.css'; export const metadata: Metadata = { @@ -6,6 +7,12 @@ 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, }: { @@ -13,7 +20,7 @@ export default function RootLayout({ }) { return ( - + {children}