diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index cd6e1ef..eb441ad 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -97,7 +97,7 @@ export default function AboutPage() { { value: "500+", title: "Projects Completed" }, { value: "10+", title: "Years Experience" }, ]} - imageSrc="http://img.b2bpic.net/free-photo/successful-business-team-with-thumbs-up-smiling_1262-2021.jpg" + imageSrc="http://img.b2bpic.net/free-photo/successful-business-team-with-thumbs-up-smiling_1262-2021.jpg?_wi=2" imageAlt="Professional ARP Landscaping team" mediaAnimation="slide-up" metricsAnimation="slide-up" @@ -117,7 +117,7 @@ export default function AboutPage() { { title: "Landscape Design", description: "Custom outdoor design that complements your home and maximizes curb appeal. Professional consultation included.", - imageSrc: "http://img.b2bpic.net/free-photo/restaurant-with-closed-umbrellas_1127-2150.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/restaurant-with-closed-umbrellas_1127-2150.jpg?_wi=3", imageAlt: "Professional landscape design consultation", buttonIcon: Sparkles, buttonHref: "/services", @@ -125,7 +125,7 @@ export default function AboutPage() { { title: "Lawn Installation & Maintenance", description: "Healthy, vibrant lawns start with proper installation and consistent care. We ensure your grass thrives year-round.", - imageSrc: "http://img.b2bpic.net/free-photo/beautiful-shot-public-park-toowoomba-queensland-australia_181624-15191.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/beautiful-shot-public-park-toowoomba-queensland-australia_181624-15191.jpg?_wi=3", imageAlt: "Professional lawn maintenance and care", buttonIcon: Sparkles, buttonHref: "/services", diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 83bcc55..71f8d39 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,28 +1,61 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Libre_Baskerville } 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 { Libre_Baskerville } 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 libreBaskerville = Libre_Baskerville({ variable: "--font-libre-baskerville", subsets: ["latin"], weight: ["400", "700"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); + +export const metadata: Metadata = { + title: "ARP Landscaping & Irrigation - Expert Landscapers in Dallas, TX", + description: "Professional landscaping and irrigation services in Dallas, Texas. Expert landscape design, lawn maintenance, sprinkler repair, and drainage solutions. Get your free quote today!", + keywords: "landscaping Dallas, irrigation services Dallas, landscape design Texas, sprinkler repair Dallas, lawn maintenance Dallas", + metadataBase: new URL("https://arplandscaping.com"), + alternates: { + canonical: "https://arplandscaping.com", + }, + openGraph: { + title: "ARP Landscaping & Irrigation - Transform Your Outdoor Space", + description: "Professional landscaping and irrigation services in Dallas, Texas. Over 500 completed projects and 100+ happy clients.", + url: "https://arplandscaping.com", + siteName: "ARP Landscaping & Irrigation", + type: "website", + images: [ + { + url: "https://arplandscaping.com/og-image.jpg", + alt: "ARP Landscaping - Professional Landscaping Services Dallas", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "ARP Landscaping & Irrigation Dallas", + description: "Expert landscaping and irrigation services. Free quotes available.", + images: ["https://arplandscaping.com/twitter-image.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; export default function RootLayout({ children, @@ -32,7 +65,9 @@ export default function RootLayout({ return ( - + {children}