diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 35caf3d..7fe0149 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Figtree } from "next/font/google"; +import "./styles/variables.css"; 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 figtree = Figtree({ - variable: "--font-figtree", subsets: ["latin"], -}); - export const metadata: Metadata = { - title: "Sarabia Sealing - Professional Driveway & Parking Lot Sealing in O'Fallon, IL", description: "Expert concrete and asphalt sealing services in O'Fallon, Illinois. Free estimates on driveway sealing, parking lot maintenance, and crack repair.", keywords: "driveway sealing O'Fallon, parking lot sealing Illinois, asphalt maintenance, concrete sealing, crack filling", metadataBase: new URL("https://sarabiasealing.com"), - alternates: { - canonical: "https://sarabiasealing.com"}, - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Sarabia Sealing - Professional Sealing Services", description: "Protect your surfaces with expert sealing solutions in O'Fallon, IL", url: "https://sarabiasealing.com", siteName: "Sarabia Sealing", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/funny-kid-rain-boots-playing-rain-park_1157-37673.jpg", alt: "Professional sealing services"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Sarabia Sealing - Professional Sealing Services in O'Fallon", description: "Expert driveway and parking lot sealing services with free estimates", images: ["http://img.b2bpic.net/free-photo/funny-kid-rain-boots-playing-rain-park_1157-37673.jpg"], - }, + title: "Sarabia Sealing - Professional Driveway & Parking Lot Sealing in O'Fallon, IL", description: "Expert driveway and parking lot sealing services in O'Fallon, IL. Free estimates for residential and commercial projects. Trusted by hundreds of homeowners and businesses.", keywords: "driveway sealing, parking lot sealing, sealcoating, O'Fallon IL, asphalt sealing, concrete sealing", openGraph: { + title: "Sarabia Sealing - Professional Sealing Services", description: "Protect your surfaces with expert sealing solutions in O'Fallon, IL", type: "website"}, }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +