From a7d48409253fc6164404caaf8a8e9abae8d8cac0 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 10:44:53 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 62 ++++++++-------------------------------------- 1 file changed, 10 insertions(+), 52 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1481868..5f9a361 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,61 +1,20 @@ -import type { Metadata } from "next"; -import { Inter_Tight } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const interTight = Inter_Tight({ - variable: "--font-inter-tight", - subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +import type { Metadata } from 'next'; +import { GeistSans } from 'geist/font/sans'; +import './globals.css'; export const metadata: Metadata = { - title: "PropertySync - Real Estate Investment Platform & Syndication", - description: "PropertySync connects investment properties with major real estate portals like Zillow and Realtor.com. Buy, sell, and invest in premium properties nationwide with expert guidance.", - keywords: "real estate investment, property listings, investment opportunities, Zillow syndication, Realtor.com, MLS, commercial real estate, residential investment", - metadataBase: new URL("https://propertysync.com"), - alternates: { - canonical: "https://propertysync.com", - }, - openGraph: { - title: "PropertySync - Your Real Estate Investment Platform", - description: "Discover premium investment properties syndicated to Zillow, Realtor.com, and major MLS boards nationwide.", - siteName: "PropertySync", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/modern-balconies-with-geometric-shapes-glass-reflections-contemporary-facade_169016-68993.jpg", - alt: "PropertySync - Investment Real Estate Platform", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "PropertySync - Real Estate Investment Platform", - description: "Find and invest in premium properties syndicated across the nation's leading real estate platforms.", - 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: 'PropertySync - Real Estate Investment Platform', + description: 'Discover premium investment properties syndicated across the nation\'s leading real estate platforms.', }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}