diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b47900e..374fed3 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,17 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Source_Sans_3 } 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"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const sourceSans3 = Source_Sans_3({ - variable: "--font-source-sans-3", subsets: ["latin"], -}); export const metadata: Metadata = { - title: "Chase's Junk Removal LLC | Fast, Affordable Hauling Services", description: "Professional junk removal serving North Port, Sarasota, Port Charlotte, Venice & Punta Gorda. Same-day service, free quotes, eco-friendly disposal.", keywords: "junk removal, furniture removal, house cleanout, yard waste removal, construction debris, appliance removal, North Port, Sarasota", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Chase's Junk Removal LLC | Fast & Affordable Service", description: "Get your junk hauled away fast. Free quotes, same-day service available. Serving North Port, Sarasota, Port Charlotte, Venice & Punta Gorda.", type: "website", siteName: "Chase's Junk Removal LLC", images: [ - { - url: "http://img.b2bpic.net/free-photo/wheel-loader-transporting-municipal-waste-waste-treatment-plant_181624-57005.jpg", alt: "Chase's Junk Removal truck"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Chase's Junk Removal LLC | Fast & Affordable", description: "Professional junk removal serving Southwest Florida. Free quotes, same-day service.", images: ["http://img.b2bpic.net/free-photo/wheel-loader-transporting-municipal-waste-waste-treatment-plant_181624-57005.jpg"], - }, -}; + title: "Chase's Junk Removal", description: "Fast, affordable junk removal serving your community"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}