diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 603712b..f5e547e 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -110,7 +110,7 @@ export default function AboutPage() { title: "Lawn Care & Maintenance", description: "Professional mowing, edging, seasonal maintenance, and lawn treatment services to keep your yard looking pristine year-round.", tag: "Lawn Care", - imageSrc: "http://img.b2bpic.net/free-photo/view-robot-tending-maintaining-gardens_23-2151803934.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/view-robot-tending-maintaining-gardens_23-2151803934.jpg?_wi=3", imageAlt: "Professional lawn care mowing service", }, { @@ -118,7 +118,7 @@ export default function AboutPage() { title: "Landscaping & Design", description: "Expert garden design, planting, yard improvements, and custom landscaping solutions tailored to your vision.", tag: "Landscaping", - imageSrc: "http://img.b2bpic.net/free-photo/smiling-brunet-male-gardener-cutting-overgrown-bush-by-hedge-trimmer-sunny-day-front-view-hard_7502-10573.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/smiling-brunet-male-gardener-cutting-overgrown-bush-by-hedge-trimmer-sunny-day-front-view-hard_7502-10573.jpg?_wi=3", imageAlt: "landscaping design installation plants", }, { @@ -126,7 +126,7 @@ export default function AboutPage() { title: "Snow Removal & Plowing", description: "24/7 emergency snow removal, residential plowing, driveway clearing, and ice management services.", tag: "Snow Removal", - imageSrc: "http://img.b2bpic.net/free-photo/pickup-with-snow-plow-clears-snowy-highway-winter-maintenance_169016-71248.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/pickup-with-snow-plow-clears-snowy-highway-winter-maintenance_169016-71248.jpg?_wi=3", imageAlt: "snow removal plowing winter service", }, ]} diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 4788b83..8826b65 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -89,7 +89,7 @@ export default function ContactPage() { description="Contact Old Style Services today for a free estimate. We'll respond quickly to discuss your landscaping or snow removal needs." background={{ variant: "plain" }} useInvertedBackground={false} - imageSrc="http://img.b2bpic.net/free-vector/floral-pretty-quote-about-nature_23-2147537959.jpg" + imageSrc="http://img.b2bpic.net/free-vector/floral-pretty-quote-about-nature_23-2147537959.jpg?_wi=3" imageAlt="landscaping contact form inquiry request" mediaAnimation="slide-up" mediaPosition="right" diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9b64f44..27021da 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,22 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Inter_Tight } 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 { Inter_Tight } 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 interTight = Inter_Tight({ variable: "--font-inter-tight", @@ -20,6 +24,39 @@ const interTight = Inter_Tight({ weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); +export const metadata: Metadata = { + title: "Professional Landscaping & Snow Removal in Toledo, OH", + description: "Old Style Services provides reliable lawn care, landscaping design, and 24/7 snow removal in Toledo, Ohio. Free estimates available. 4.6★ rating with 50+ reviews.", + keywords: "Toledo landscaping services, lawn care Toledo Ohio, snow removal Toledo, landscaping near me, local landscaping company", + metadataBase: new URL("https://oldstyleservices.com"), + alternates: { + canonical: "https://oldstyleservices.com", + }, + openGraph: { + title: "Old Style Services - Toledo Landscaping & Snow Removal", + description: "Professional landscaping, lawn care, and emergency snow removal in Toledo, OH. Available 24/7. Get your free quote today.", + url: "https://oldstyleservices.com", + siteName: "Old Style Services LLC", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/man-cutting-grass-with-lawn-mover-back-yard_1303-22795.jpg", + alt: "Professional lawn care service", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Old Style Services - Toledo Landscaping & Snow Removal", + description: "Professional landscaping and snow removal in Toledo, OH. Available 24/7. Call +1 567-395-4787 for free quote.", + images: ["http://img.b2bpic.net/free-photo/vases-with-pretty-flowers-blurred-background_23-2147609479.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +65,9 @@ export default function RootLayout({ return ( - + {children}