Update src/app/layout.tsx

This commit is contained in:
2026-03-07 01:52:02 +00:00
parent 90611d61da
commit 283f3629c8

View File

@@ -1,55 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Lato } 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 lato = Lato({
variable: "--font-lato", subsets: ["latin"],
weight: ["100", "300", "400", "700", "900"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "JP Lawn Care+ | Professional Lawn Mowing & Landscaping in Wilmington, DE", description: "Professional lawn care and landscaping services in Wilmington, DE. Over 6 years of experience. Mowing, landscape design, mulching, trimming, and seasonal cleanup.", keywords: "lawn care Wilmington DE, landscaping Delaware, lawn mowing service, yard maintenance, hedge trimming, mulch installation", robots: {
index: true,
follow: true,
},
openGraph: {
title: "JP Lawn Care+ | Professional Landscaping Wilmington, DE", description: "Reliable lawn care and landscaping services in Wilmington, Delaware. Professional service with 6+ years of experience.", type: "website", siteName: "JP Lawn Care+", images: [
{
url: "http://img.b2bpic.net/free-photo/attractive-gardener-posing-while-trimming-conifer-bush-by-electric-hedge-clippers-sunny-day_7502-10442.jpg", alt: "Professional lawn care and landscaping services"},
],
},
twitter: {
card: "summary_large_image", title: "JP Lawn Care+ | Wilmington, DE Landscaping", description: "Professional lawn care, landscaping, and yard maintenance in Wilmington, Delaware.", images: ["http://img.b2bpic.net/free-photo/attractive-gardener-posing-while-trimming-conifer-bush-by-electric-hedge-clippers-sunny-day_7502-10442.jpg"],
},
};
title: "JP Lawn Care+ | Professional Lawn Care & Landscaping in Wilmington, DE", description: "Professional lawn care and landscaping services in Wilmington, Delaware. Over 6 years of experience. Fair pricing, expert service, and results you can trust."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1417,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}