Update src/app/layout.tsx

This commit is contained in:
2026-03-04 18:07:26 +00:00
parent c3daf16280
commit a1e41bee11

View File

@@ -1,57 +1,28 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Montserrat } 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 halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
const geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const montserrat = Montserrat({
variable: "--font-montserrat", subsets: ["latin"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Professional Junk Removal Same-Day Service", description: "Expert junk removal for homes and businesses. Transparent pricing, eco-friendly disposal, same-day scheduling. Stress-free decluttering starts here.", keywords: "junk removal, hauling service, decluttering, estate clearance, professional removal", metadataBase: new URL("https://junkgone.com"),
alternates: {
canonical: "https://junkgone.com"},
openGraph: {
title: "JunkGone Professional Junk Removal Service", description: "Same-day junk removal with transparent pricing and responsible disposal. Book your removal today.", url: "https://junkgone.com", siteName: "JunkGone", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/full-shot-man-hazmat-suit-cleaning_23-2149345581.jpg", alt: "Professional junk removal results"},
],
},
twitter: {
card: "summary_large_image", title: "JunkGone Professional Junk Removal", description: "Same-day junk removal with transparent pricing. Book now.", images: ["http://img.b2bpic.net/free-photo/full-shot-man-hazmat-suit-cleaning_23-2149345581.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Create Next App", description: "Generated by create next app"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${montserrat.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable}`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1419,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}