From 822f929ba5955b92d48136b2f5b9e3804cb40cf3 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 17:55:51 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 72 ++++++---------------------------------------- 1 file changed, 9 insertions(+), 63 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 52d69cf..fea0ae6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,75 +1,22 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Poppins } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "./styles/variables.css"; +import "./styles/base.css"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const poppins = Poppins({ - variable: "--font-poppins", - subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Hydroseeding Brentwood NH | 5-Star Professional Lawn Service", - description: "Premium hydroseeding in Brentwood, Exeter & Seacoast NH. Owner-operated, fully insured. Free estimates. Residential & commercial. Thick, healthy lawns guaranteed.", - keywords: "hydroseeding Brentwood NH, hydroseeding Exeter NH, hydroseeding Seacoast NH, lawn installation NH, commercial hydroseeding, new construction lawns", - metadataBase: new URL("https://fowlersfinegrass.com"), - alternates: { - canonical: "https://fowlersfinegrass.com", - }, - openGraph: { - title: "Fowler's Fine Grass | Professional Hydroseeding NH", - description: "5-star rated hydroseeding specialist serving Brentwood, Exeter, and Seacoast NH with premium materials and owner-operated expertise.", - url: "https://fowlersfinegrass.com", - siteName: "Fowler's Fine Grass LLC", - type: "website", - images: [ - { - url: "https://fowlersfinegrass.com/og-image.jpg", - alt: "Fowler's Fine Grass - Premium Hydroseeding Service", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Fowler's Fine Grass | Hydroseeding Specialists", - description: "Premium hydroseeding service in Brentwood & Exeter, NH. 5-star rated. Call today for a free estimate.", - images: ["https://fowlersfinegrass.com/twitter-image.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Fowler's Fine Grass - Premium Hydroseeding in Brentwood NH", description: "Owner-operated hydroseeding specialist serving Brentwood, Exeter, Seacoast NH, Southern Maine & Northern MA. Premium seed blends, expert care, 5-star rated."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}