diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 78654d9..c33fbbf 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,67 +1,28 @@ import type { Metadata } from "next"; -import { Mulish } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const mulish = Mulish({ - variable: "--font-mulish", - subsets: ["latin"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Silverline Roofing Experts | South Florida Roof Repair & Replacement", - description: "Licensed & insured roofing contractor in South Florida. Expert roof repair, leak detection, inspections & replacements. 4.9★ Google rating. Free estimates.", - keywords: "roofing contractor South Florida, roof repair Pompano Beach, roof replacement Broward County, roof leak repair, licensed roofer", - metadataBase: new URL("https://silverlineroofingexperts.com"), - alternates: { - canonical: "https://silverlineroofingexperts.com", - }, - openGraph: { - title: "Silverline Roofing Experts | South Florida Roof Services", - description: "Professional roofing services in South Florida. Roof repair, replacement, leak detection & inspections. Family-owned, fully licensed & insured.", - url: "https://silverlineroofingexperts.com", - siteName: "Silverline Roofing Experts", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/man-sitting-roof_23-2148748778.jpg", - alt: "Silverline Roofing - Professional South Florida Roofing", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Silverline Roofing Experts | South Florida", - description: "Expert roofing contractor. Repairs, replacements & inspections. 4.9★ rated.", - images: ["http://img.b2bpic.net/free-photo/man-sitting-roof_23-2148748778.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Silverline Roofing | South Florida Roofing Experts", description: "Professional roofing services in South Florida. Roof repairs, replacements, leak detection, and inspections."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +