diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 01b53a9..637b5e1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1440 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Raleway } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const raleway = Raleway({ - variable: "--font-raleway", - subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Creative Minds Landscaping | Professional Hardscaping & Design in Amenia NY", - description: "Expert landscaping and hardscaping services in Amenia NY. 11+ years, 4.7★ rating. Patios, retaining walls, pool landscaping, design & maintenance. Call 203-884-7851 for free estimate.", - keywords: "landscaping Amenia NY, hardscaping Amenia, patio installation Amenia NY, retaining wall contractor Amenia, landscaping services Dutchess County, Creative Minds Landscaping", - metadataBase: new URL("https://creativemindslandscaping.com"), - alternates: { - canonical: "https://creativemindslandscaping.com", - }, - openGraph: { - title: "Transform Your Outdoor Space - Creative Minds Landscaping", - description: "Professional landscaping & hardscaping in Amenia NY. 11+ years experience. Patios, pools, retaining walls, design & maintenance.", - url: "https://creativemindslandscaping.com", - siteName: "Creative Minds Landscaping LLC", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/elegant-wedding-venue-with-swimming-pool_637285-5705.jpg", - alt: "Beautiful landscaped outdoor patio by Creative Minds", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Creative Minds Landscaping - Amenia NY", - description: "Professional hardscaping & landscaping. 4.7★ rating. Free estimates. Call 203-884-7851", - images: ["http://img.b2bpic.net/free-photo/elegant-wedding-venue-with-swimming-pool_637285-5705.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Creative Minds Landscaping", description: "Professional landscaping and hardscaping services in Amenia, NY"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -