Update src/app/layout.tsx
This commit is contained in:
@@ -1,58 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Inter_Tight } 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 interTight = Inter_Tight({
|
||||
variable: "--font-inter-tight", subsets: ["latin"],
|
||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Professional Lawn Care in Maury City, TN | Top Cut", description: "Expert lawn mowing, landscaping, and seasonal cleanup services in Maury City, TN. 5-star rated local lawn care company. Call (731) 694-9070 for a free quote.", keywords: "lawn care Maury City TN, lawn mowing, landscaping, yard cleanup, shrub trimming, tree service", metadataBase: new URL("https://topcut-lawn.com"),
|
||||
alternates: {
|
||||
canonical: "https://topcut-lawn.com"},
|
||||
openGraph: {
|
||||
title: "Professional Lawn Care in Maury City, TN", description: "Expert lawn mowing and landscaping services. 5-star rated. Call for your free quote today.", url: "https://topcut-lawn.com", siteName: "Top Cut Lawn & Landscape", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/smiling-male-landscaper-denim-shirt-trimming-overgrown-lawn-with-lawn-mover-summer-day-low_7502-10170.jpg", alt: "Professional lawn care services"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Professional Lawn Care in Maury City, TN", description: "Expert lawn mowing and landscaping services by Top Cut.", images: ["http://img.b2bpic.net/free-photo/smiling-male-landscaper-denim-shirt-trimming-overgrown-lawn-with-lawn-mover-summer-day-low_7502-10170.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "Top Cut Lawn & Landscape | Professional Lawn Care in Maury City, TN", description: "Professional lawn mowing, landscaping, and seasonal cleanup services in Maury City, TN. We keep your yard looking its best year-round."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${interTight.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1420,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user