Update src/app/layout.tsx

This commit is contained in:
2026-03-06 05:42:23 +00:00
parent b67ed703ae
commit b96bc66624

View File

@@ -1,54 +1,24 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Manrope } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import "./styles/variables.css";
import "./styles/base.css";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "JunkGone - Same-Day Junk Removal & Debris Disposal", description: "Fast, affordable, hassle-free junk removal for residential & commercial needs. Free quotes, same-day service. Get your free quote today!", keywords: "junk removal, debris disposal, trash removal, estate cleanup, renovation cleanup, professional junk removal service", robots: {
index: true,
follow: true,
},
openGraph: {
title: "JunkGone - Junk Removal Made Easy", description: "Professional junk removal service offering same-day quotes and flexible scheduling for residential and commercial customers.", siteName: "JunkGone", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/wheel-loader-transporting-municipal-waste-waste-treatment-plant_181624-57005.jpg", alt: "Professional junk removal team at work"},
],
},
twitter: {
card: "summary_large_image", title: "JunkGone - Fast & Affordable Junk Removal", description: "Get your free quote today. Same-day service available in your area.", images: ["http://img.b2bpic.net/free-photo/wheel-loader-transporting-municipal-waste-waste-treatment-plant_181624-57005.jpg"],
},
};
title: "4-Dice Enterprises - Industrial Solutions", description: "Bold industrial solutions with cutting-edge design and uncompromising quality."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1416,7 +1386,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}