diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0d2ba58..1c7c76f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1417 +1,39 @@ import type { Metadata } from "next"; -import { Montserrat } from "next/font/google"; import { Inter } from "next/font/google"; +import "./styles/variables.css"; +import "./styles/base.css"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], -}); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Vegas Landscaping | Chicago Lawn Care & Landscape Services", description: "Professional landscaping services in Chicago. Complete lawn care, patio installation, tree services & more. Free estimates. Contact Manuel Vega at 708-439-4194.", keywords: "landscaping Chicago, lawn care, patio installation, tree services, landscape design, spring cleanup, sod installation, professional landscaper", metadataBase: new URL("https://vegaslandscaping.com"), - alternates: { - canonical: "https://vegaslandscaping.com" - }, - openGraph: { - title: "Vegas Landscaping - Your Landscape Rehab Specialists", description: "Transform your outdoor space with professional landscaping services. Free estimates available.", url: "https://vegaslandscaping.com", siteName: "Vegas Landscaping", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/town-park-with-benches-fireplace_114579-13022.jpg", alt: "Beautiful landscaped yard - Vegas Landscaping" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Vegas Landscaping - Landscape Rehab Specialists", description: "Professional lawn care, patio installation, tree services & more in Chicago area.", images: ["http://img.b2bpic.net/free-photo/town-park-with-benches-fireplace_114579-13022.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Vegas Landscaping | Professional Landscape Services Chicago", description: "Vegas Landscaping - Professional landscaping services in Chicago. Lawn care, patio installation, tree services, and complete landscape design."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + {children} - +