Update src/app/layout.tsx

This commit is contained in:
2026-03-03 22:30:51 +00:00
parent da531e3558
commit cfa2bab51a

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1416,7 +1379,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}