From 511df987ae50ce8bd5a3ad08d61ec06ccd525910 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 4 Jun 2026 17:17:06 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 50 ++++++++++++++++++++++++++++++++++++---------- 1 file changed, 39 insertions(+), 11 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 64938c3..13c971f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - + {children}