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}