import type { Metadata } from "next"; import { DM_Sans } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { title: "Cruz Landscape | Luxury Landscape Design & Installation", description: "Award-winning landscape design transforming homes into luxury outdoor retreats. Premium materials, expert installation, and personalized service.", keywords: "luxury landscape design, landscape architecture, outdoor living, premium landscaping, landscape installation", metadataBase: new URL("https://cruzlandscape.com"), alternates: { canonical: "https://cruzlandscape.com" }, openGraph: { title: "Cruz Landscape | Luxury Outdoor Design", description: "Transform your outdoor space into a luxury retreat. Award-winning landscape design and installation.", url: "https://cruzlandscape.com", siteName: "Cruz Landscape", type: "website", images: [{ url: "http://img.b2bpic.net/free-photo/outdoor-portrait-stylish-european-woman-pink-fashion-suit-outside-villa_343596-2153.jpg", alt: "Luxury landscape design showcase" }] }, twitter: { card: "summary_large_image", title: "Cruz Landscape | Luxury Outdoor Design", description: "Luxury landscape design that elevates your lifestyle and property value.", images: ["http://img.b2bpic.net/free-photo/outdoor-portrait-stylish-european-woman-pink-fashion-suit-outside-villa_343596-2153.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}