From d17fe4798ef403fb053b3c2b82ebfc0297e02491 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 17 Apr 2026 00:03:53 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a3953fd..7af841c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,20 +6,21 @@ import "@/lib/gsap-setup"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; +import { Montserrat } from "next/font/google"; -const halant = Halant({ - variable: "--font-halant", + + +export const metadata: Metadata = { title: 'Elite Estates | Curated Luxury Real Estate & Private Residences', description: 'Discover an exclusive collection of luxury properties. Elite Estates offers bespoke real estate services for discerning buyers seeking prestige and privacy.', openGraph: { title: 'Elite Estates | Curated Luxury Real Estate', description: 'Discover an exclusive collection of luxury properties. Elite Estates offers bespoke real estate services for discerning buyers seeking prestige and privacy.', type: 'website' } }; + +const montserrat = Montserrat({ + variable: "--font-montserrat", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], }); - const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); -export const metadata: Metadata = { title: 'Elite Estates | Curated Luxury Real Estate & Private Residences', description: 'Discover an exclusive collection of luxury properties. Elite Estates offers bespoke real estate services for discerning buyers seeking prestige and privacy.', openGraph: { title: 'Elite Estates | Curated Luxury Real Estate', description: 'Discover an exclusive collection of luxury properties. Elite Estates offers bespoke real estate services for discerning buyers seeking prestige and privacy.', type: 'website' } }; - export default function RootLayout({ children, }: Readonly<{ @@ -28,9 +29,7 @@ export default function RootLayout({ return ( - + {children}