diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 1b21626..6692668 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -134,4 +134,4 @@ export default function AboutPage() { ); -} \ No newline at end of file +} diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index b13b84f..7629a7c 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -126,4 +126,4 @@ export default function ContactPage() { ); -} \ No newline at end of file +} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 00369c7..518eac7 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,58 +1,20 @@ import type { Metadata } from "next"; -import { Public_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 publicSans = Public_Sans({ - variable: "--font-public-sans", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Best Landscaping Services LLC | Top-Rated Lawn Care in Rosharon, TX", - description: "5-star landscaping company in Rosharon, TX. Professional lawn care, stone landscaping, patio extensions & more. Fair pricing. Call (832) 970-7965.", - keywords: "landscaping, lawn care, Rosharon TX, stone work, patio, landscaper, local", - metadataBase: new URL("https://bestlandscapingservices.com"), - alternates: { - canonical: "https://bestlandscapingservices.com", - }, - openGraph: { - title: "Best Landscaping Services LLC - Premium Outdoor Services", - description: "Top-rated landscaping company in Rosharon, TX. Trusted by locals. 5-star reviews.", - siteName: "Best Landscaping Services LLC", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/chinese-tea-ceremony-park-tea-drinking-open-air_613910-7341.jpg", - alt: "Professional landscaping service", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Best Landscaping Services LLC - Rosharon, TX", - description: "5-star landscaping & lawn care. Local, reliable, fair pricing.", - images: ["http://img.b2bpic.net/free-photo/chinese-tea-ceremony-park-tea-drinking-open-air_613910-7341.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Best Landscaping Services", description: "Top-rated landscaping and outdoor services in Rosharon, TX"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}