From 094ef0c6401ea99420d55f6686868df108f1decd Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 10:53:09 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 52 +++++----------------------------------------- 1 file changed, 5 insertions(+), 47 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c2f850e..38f5e57 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,16 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Open_Sans } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], -}); export const metadata: Metadata = { - title: "PropSales - Premium Real Estate Platform | Showcase Your Properties", description: "Connect with builders and investors through our premium real estate platform. Browse ongoing and completed projects, list your properties, and grow your business.", keywords: "real estate, properties, builders, developers, real estate platform, property listings, ongoing projects, completed projects", metadataBase: new URL("https://propsales.com"), - alternates: { - canonical: "https://propsales.com"}, - openGraph: { - title: "PropSales - Real Estate Solutions", description: "Showcase your real estate projects and connect with qualified buyers and investors on our premium platform.", url: "https://propsales.com", siteName: "PropSales", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/modern-balconies-with-geometric-shapes-glass-reflections-contemporary-facade_169016-68993.jpg", alt: "PropSales Real Estate Platform"}, - ], - }, - twitter: { - card: "summary_large_image", title: "PropSales - Real Estate Platform", description: "Premium platform for showcasing real estate projects and connecting with investors", images: ["http://img.b2bpic.net/free-photo/modern-balconies-with-geometric-shapes-glass-reflections-contemporary-facade_169016-68993.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "PropSales - Real Estate Solutions", description: "Transform real estate dreams into reality with our premium property platform."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}