75 lines
2.4 KiB
TypeScript
75 lines
2.4 KiB
TypeScript
import type { Metadata } from "next";
|
|
import { Halant } from "next/font/google";
|
|
import { Inter } from "next/font/google";
|
|
import "./globals.css";
|
|
import "@/lib/gsap-setup";
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
import Tag from "@/tag/Tag";
|
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
|
import { Manrope } from "next/font/google";
|
|
import { DM_Sans } from "next/font/google";
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Parker\'s Landscaping LLC - Your Local Landscaping Experts in Hamilton Township',
|
|
description: 'Parker\'s Landscaping LLC provides reliable, high-quality landscaping services including weeding, mulching, and grass seeding in Hamilton Township, NJ. Get a free estimate today!',
|
|
keywords: ["landscaping, landscaper, lawn care, garden design, weeding, mulching, grass seeding, Hamilton Township NJ, outdoor services"],
|
|
openGraph: {
|
|
"title": "Parker's Landscaping LLC - Hamilton Township, NJ",
|
|
"description": "Transform your outdoor space with Parker's Landscaping LLC. Quality service and beautiful results for homeowners in Hamilton Township.",
|
|
"url": "https://www.parkerslandscaping.com",
|
|
"siteName": "Parker's Landscaping LLC",
|
|
"images": [
|
|
{
|
|
"url": "asset://hero-main-image",
|
|
"alt": "Beautifully landscaped garden with green lawn"
|
|
}
|
|
],
|
|
"type": "website"
|
|
},
|
|
twitter: {
|
|
"card": "summary_large_image",
|
|
"title": "Parker's Landscaping LLC - Hamilton Township, NJ",
|
|
"description": "Your trusted local landscaper for professional weeding, mulching, and lawn care in Hamilton Township, NJ.",
|
|
"images": [
|
|
"asset://hero-main-image"
|
|
]
|
|
},
|
|
robots: {
|
|
"index": true,
|
|
"follow": true
|
|
},
|
|
};
|
|
|
|
const manrope = Manrope({
|
|
variable: "--font-manrope",
|
|
subsets: ["latin"],
|
|
});
|
|
const dmSans = DM_Sans({
|
|
variable: "--font-dm-sans",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en" suppressHydrationWarning>
|
|
<ServiceWrapper>
|
|
<body className={`${manrope.variable} ${dmSans.variable} antialiased`}>
|
|
<Tag />
|
|
{children}
|
|
<script
|
|
dangerouslySetInnerHTML={{
|
|
__html: `${getVisualEditScript()}`
|
|
}}
|
|
/>
|
|
</body>
|
|
</ServiceWrapper>
|
|
</html>
|
|
);
|
|
}
|