From 2b82e0da158c34410b7b946005d5e87eb96c102e Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 21:24:16 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 60 +++++++++++++--------------------------------- 1 file changed, 17 insertions(+), 43 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b4efe29..c10e593 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,60 +1,35 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Lato } 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"], -}); +import "./styles/variables.css"; +import "./styles/base.css"; const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); -const lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], -}); - export const metadata: Metadata = { - title: "SocialSync | Real Estate Social Media Marketing", description: "Strategic social media marketing agency for real estate professionals. Increase engagement, generate leads, and grow your business with proven real estate social media strategies.", keywords: "real estate social media marketing, real estate marketing agency, real estate social media strategy, real estate lead generation, agent social media, realtor marketing", metadataBase: new URL("https://socialsync.io"), - alternates: { - canonical: "https://socialsync.io" - }, - openGraph: { - title: "SocialSync | Real Estate Social Media Marketing", description: "Strategic social media marketing for real estate professionals that converts leads into clients.", url: "https://socialsync.io", siteName: "SocialSync", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/people-recording-their-house-tour_23-2151139102.jpg", alt: "SocialSync real estate social media marketing" - } - ] - }, - twitter: { - card: "summary_large_image", title: "SocialSync | Real Estate Social Media Marketing", description: "Strategic social media marketing for real estate professionals that converts leads into clients.", images: ["http://img.b2bpic.net/free-photo/people-recording-their-house-tour_23-2151139102.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "SocialSync - Real Estate Social Media Marketing", description: "Elevate your real estate brand with strategic social media that converts leads into clients."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - {children} - + + {children} + +