Update src/app/layout.tsx

This commit is contained in:
2026-06-04 17:17:06 +00:00
parent 9a005cfda6
commit 511df987ae

View File

@@ -1,28 +1,54 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Libre_Baskerville } 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 { Libre_Baskerville } from "next/font/google";
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville", subsets: ["latin"],
weight: ["400", "700"]
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"]
});
export const metadata: Metadata = {
metadataBase: new URL('https://cervanteslandscaping.com'),
title: "Cervantes Landscaping - Luxury Landscaping & Outdoor Design in Houston", description: "Transform your outdoor space with Cervantes Landscaping, offering premium landscape design, drainage, irrigation, and hardscaping services in Houston. Get a free estimate today!", keywords: ["luxury landscaping Houston", "outdoor design", "drainage solutions Houston", "irrigation systems", "sod installation", "hardscaping", "backyard transformation", "landscape architect Houston"],
alternates: {
canonical: '/',
},
openGraph: {
title: "Cervantes Landscaping - Luxury Landscaping & Outdoor Design in Houston", description: "Transform your outdoor space with Cervantes Landscaping, offering premium landscape design, drainage, irrigation, and hardscaping services in Houston. Get a free estimate today!", url: 'https://cervanteslandscaping.com',
siteName: 'Cervantes Landscaping',
images: [
{
url: 'http://img.b2bpic.net/free-photo/beautiful-african-american-woman-natural-makeup-wear-fashion-clothes-casual-black-white-dress-code-office-style-total-blouse-pants-suit-hat_627829-1575.jpg',
alt: 'Luxurious transformed outdoor living space'
}
]
},
twitter: {
card: 'summary_large_image',
title: "Cervantes Landscaping - Luxury Landscaping & Outdoor Design in Houston", description: "Transform your outdoor space with Cervantes Landscaping, offering premium landscape design, drainage, irrigation, and hardscaping services in Houston. Get a free estimate today!", images: ['http://img.b2bpic.net/free-photo/beautiful-african-american-woman-natural-makeup-wear-fashion-clothes-casual-black-white-dress-code-office-style-total-blouse-pants-suit-hat_627829-1575.jpg'],
},
robots: {
index: true,
follow: true,
googleBot: {
index: true,
follow: true,
'max-video-preview': -1,
'max-image-preview': 'large',
'max-snippet': -1,
},
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -31,7 +57,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
<body
className={`${libreBaskerville.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -43,4 +71,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}