diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 401a9f6..ae1fa9b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,68 +1,17 @@ import type { Metadata } from "next"; -import { DM_Sans } from "next/font/google"; -import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", - subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); export const metadata: Metadata = { - title: "Broadscope - Property Solutions & Claims Advocacy", - description: - "Broadscope Solutions and Adjusters: Expert real estate services, property development, and insurance claims advocacy. Maximize your property value and insurance settlements.", - keywords: - "real estate, property solutions, insurance claims, public adjuster, property development, home renovation", - metadataBase: new URL("https://broadscope.com"), - alternates: { - canonical: "https://broadscope.com", - }, - openGraph: { - title: "Broadscope - Property Solutions & Claims Advocacy", - description: - "Expert real estate and insurance claims advocacy services from Broadscope Solutions and Adjusters.", - type: "website", - siteName: "Broadscope", - images: [ - { - url: "http://img.b2bpic.net/free-photo/happy-family-near-new-house-real-estate-concept_493343-29873.jpg", - alt: "Broadscope Property Services", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Broadscope - Property Solutions & Claims Advocacy", - description: - "Expert real estate and insurance claims advocacy services", - images: [ - "http://img.b2bpic.net/free-photo/happy-family-near-new-house-real-estate-concept_493343-29873.jpg", - ], - }, -}; + title: "Broadscope Solutions & Adjusters", description: "Property Solutions & Claims Advocacy - Serving homeowners and investors with comprehensive real estate services and expert insurance claim advocacy."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}