diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index fc95bf9..ffad64b 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -91,21 +91,21 @@ export default function AboutPage() { id: 1, title: "Founded on Reliability", description: "With over 10 years of experience in lawn care and landscaping, Tennessee Lawn Solutions has built a reputation for dependable service and quality workmanship in the Lewisburg community.", - imageSrc: "http://img.b2bpic.net/free-photo/gardeners-greenhouse-are-working-guy-girl-aprons-plant-care_1157-47094.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/gardeners-greenhouse-are-working-guy-girl-aprons-plant-care_1157-47094.jpg?_wi=1", imageAlt: "Professional landscaping team", }, { id: 2, title: "Professional Team", description: "Our crew members are trained, equipped, and passionate about outdoor spaces. Every team member brings expertise in lawn care, landscaping, and customer service excellence.", - imageSrc: "http://img.b2bpic.net/free-photo/gardeners-greenhouse-are-working-guy-girl-aprons-plant-care_1157-47094.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/gardeners-greenhouse-are-working-guy-girl-aprons-plant-care_1157-47094.jpg?_wi=2", imageAlt: "Professional team members", }, { id: 3, title: "Community Focused", description: "We are proud to serve Lewisburg residents and businesses. Our commitment goes beyond lawn care—we invest in our community and build lasting relationships with every client.", - imageSrc: "http://img.b2bpic.net/free-photo/gardeners-greenhouse-are-working-guy-girl-aprons-plant-care_1157-47094.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/gardeners-greenhouse-are-working-guy-girl-aprons-plant-care_1157-47094.jpg?_wi=3", imageAlt: "Community service commitment", }, ]} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c1f48a0..4f7109b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,27 +1,59 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Public_Sans } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Public_Sans } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const publicSans = Public_Sans({ variable: "--font-public-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); + +export const metadata: Metadata = { + title: "Lawn Care Lewisburg TN | Tennessee Lawn Solutions", + description: "Professional lawn mowing, mulch installation, and yard care services in Lewisburg, TN. Free quote. Call +1 931-993-3543 today!", + keywords: "lawn care Lewisburg, landscaping TN, lawn mowing service, mulch installation, yard cleanup", + metadataBase: new URL("https://tennesseeelawnsolutions.com"), + alternates: { + canonical: "https://tennesseeelawnsolutions.com", + }, + openGraph: { + title: "Professional Lawn Care | Tennessee Lawn Solutions", + description: "Reliable lawn mowing, mulching, and landscaping in Lewisburg, TN. 5-star rated. Call now!", + siteName: "Tennessee Lawn Solutions", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/side-view-man-carrying-wheelbarrow_23-2149382173.jpg", + alt: "Professional lawn care service", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Professional Lawn Care | Tennessee Lawn Solutions", + description: "Reliable lawn mowing and landscaping services in Lewisburg, TN.", + images: ["http://img.b2bpic.net/free-photo/side-view-man-carrying-wheelbarrow_23-2149382173.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; export default function RootLayout({ children, @@ -31,7 +63,9 @@ export default function RootLayout({ return ( - + {children}