Update src/app/layout.tsx

This commit is contained in:
2026-03-15 05:33:04 +00:00
parent 76eabde5aa
commit 9db2b118a9

View File

@@ -1,24 +1,61 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Open_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Open_Sans } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const openSans = Open_Sans({
variable: "--font-open-sans",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Houston Green Landscaping | Premium Local Service",
description: "Trusted Houston landscaping company offering landscape design, sod installation, pavers, drainage, fencing, and maintenance. Fast estimates, fair pricing, beautiful results.",
keywords: "Houston landscaping, landscape design Houston, sod installation, pavers Houston, drainage solutions, landscaping services, yard transformation",
metadataBase: new URL("https://houstongreen.landscaping"),
alternates: {
canonical: "https://houstongreen.landscaping",
},
openGraph: {
title: "Houston Green Landscaping | Premium Outdoor Design",
description: "Transform your yard with Houston's trusted landscaping team. Expert design, fast service, fair pricing.",
url: "https://houstongreen.landscaping",
siteName: "Houston Green Landscaping",
type: "website",
images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=lbinaj",
alt: "Houston Green Landscaping beautiful outdoor transformation",
},
],
},
twitter: {
card: "summary_large_image",
title: "Houston Green Landscaping",
description: "Premium landscaping services in Houston. Design, installation, drainage, and maintenance.",
images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=lbinaj"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +64,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${openSans.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +78,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}