Update src/app/layout.tsx

This commit is contained in:
2026-03-04 00:07:58 +00:00
parent dd5f4c7f73
commit 2310d8ff8e

View File

@@ -1,49 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Nunito } 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 nunito = Nunito({
variable: "--font-nunito", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Professional Landscaping in Woodbourne-Hyde Park | 24/7 Services", description: "Expert landscape design, installations, and 24/7 emergency services in Woodbourne-Hyde Park. Family-owned, 20+ years experience. Free estimates, full warranty.", keywords: "landscaping Woodbourne-Hyde Park, landscape design, emergency landscaping, local landscapers, outdoor water features, landscape installation", openGraph: {
title: "Pro Landscaping | Woodbourne-Hyde Park's Trusted Landscaper", description: "Professional landscaping services for 20+ years. Design, installation, and 24/7 emergency response.", siteName: "Pro Landscaping", type: "website"},
twitter: {
card: "summary_large_image", title: "Pro Landscaping | Trusted Landscaper in Woodbourne-Hyde Park", description: "Expert landscape design and emergency services. 20+ years experience. Call (937) 240-6570"},
robots: {
index: true,
follow: true,
},
};
title: "Pro Landscaping - Professional Services for Woodbourne-Hyde Park", description: "Expert landscape design, installations, and 24/7 emergency services. Family-owned, locally operated, fully warranted work."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1411,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}