From 406d78072526c06d1154caf4dea19963fc942b3d Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 19:04:55 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 78 +++++----------------------------------------- 1 file changed, 8 insertions(+), 70 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 15db0b9..6e92b47 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,82 +1,21 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Manrope } from "next/font/google"; -import { DM_Sans } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "@/styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const manrope = Manrope({ - variable: "--font-manrope", - subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Real Estate Dreams Shelters - Luxury Homes & Properties", - description: "Discover your dream home with Real Estate Dreams Shelters. Browse luxury properties, expert market insights, and personalized real estate solutions.", - keywords: "real estate, luxury homes, property listings, house buying, real estate agent, home investment", - metadataBase: new URL("https://realestatedreams.com"), - alternates: { - canonical: "https://realestatedreams.com", - }, - openGraph: { - title: "Real Estate Dreams Shelters - Find Your Perfect Home", - description: "Explore premium properties and luxury homes with trusted real estate experts.", - url: "https://realestatedreams.com", - siteName: "Real Estate Dreams Shelters", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/swimming-pool-beach-luxury-hotel-type-entertainment-complex-amara-dolce-vita-luxury-hotel-resort-tekirova-kemer-turkey_146671-18719.jpg", - alt: "Luxury properties showcase", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Real Estate Dreams Shelters - Premium Properties", - description: "Discover luxury homes and investment opportunities with expert guidance.", - images: [ - "http://img.b2bpic.net/free-photo/swimming-pool-beach-luxury-hotel-type-entertainment-complex-amara-dolce-vita-luxury-hotel-resort-tekirova-kemer-turkey_146671-18719.jpg", - ], - }, - robots: { - index: true, - follow: true, - }, + title: "Real Estate Dreams - Your Perfect Home Awaits", description: "Discover luxury homes and investment opportunities with Real Estate Dreams Shelters. Premium properties, expert guidance, and personalized service.", keywords: "real estate, luxury homes, property investment, real estate agent", authors: [{ name: "Real Estate Dreams Shelters" }], }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}