From 0fe1feedab25a242d7a2108e483180342b1c753b Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 08:18:40 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 1438 +------------------------------------------- 1 file changed, 23 insertions(+), 1415 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 373ca7a..5af5c74 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1431 +1,40 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Public_Sans } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import { ServiceWrapper } from "@/providers/service"; +import { Tag } from "@/utils/tag"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const publicSans = Public_Sans({ - variable: "--font-public-sans", - subsets: ["latin"], -}); +const inter = Inter({ variable: "--font-inter", subsets: ["latin"] }); export const metadata: Metadata = { - title: "Luxe Properties | Exclusive Luxury Real Estate", - description: "Discover exceptional luxury properties and investment opportunities. Premium real estate services, expert advisors, and white-glove concierge for discerning clients.", - keywords: "luxury real estate, high-end properties, exclusive homes, luxury houses for sale, investment properties, real estate advisor", - openGraph: { - title: "Luxe Properties | Luxury Real Estate Excellence", - description: "Premier luxury real estate agency offering exclusive properties, investment advisory, and concierge services for high-net-worth individuals worldwide.", - siteName: "Luxe Properties", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/attractive-blonde-girl-tulle-skirt-having-fun-stairs-she-is-smiling-down_197531-617.jpg", - alt: "Luxury Property Showcase", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Luxe Properties | Luxury Real Estate", - description: "Exclusive luxury properties and investment services for discerning clients.", - images: ["http://img.b2bpic.net/free-photo/attractive-blonde-girl-tulle-skirt-having-fun-stairs-she-is-smiling-down_197531-617.jpg"], - }, -}; + title: "Luxe Properties - Luxury Real Estate", description: "Discover exceptional luxury properties, exclusive real estate solutions, and premium investment opportunities."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + {children} - - +