diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 6241b87..f56328e 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -93,7 +93,7 @@ export default function AboutPage() { title: "Client Retention", }, ]} - imageSrc="http://img.b2bpic.net/free-photo/selfie-happy-beautiful-intercultural-business-friends_1262-20363.jpg" + imageSrc="http://img.b2bpic.net/free-photo/selfie-happy-beautiful-intercultural-business-friends_1262-20363.jpg?_wi=2" imageAlt="Professional cleaning team" mediaAnimation="opacity" metricsAnimation="slide-up" @@ -127,7 +127,7 @@ export default function AboutPage() { content: "Same high standards every single time — no shortcuts, no surprises.", }, ]} - imageSrc="http://img.b2bpic.net/free-photo/modern-kitchen-with-contemporary-interior-decor-furnishings_23-2150886738.jpg" + imageSrc="http://img.b2bpic.net/free-photo/modern-kitchen-with-contemporary-interior-decor-furnishings_23-2150886738.jpg?_wi=3" imageAlt="Pristine clean kitchen" mediaAnimation="slide-up" useInvertedBackground={false} diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index f82a9e2..6eba238 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -97,7 +97,7 @@ export default function ContactPage() { content: "We love hearing from our clients. Tell us about your experience or suggestions for improvement.", }, ]} - imageSrc="http://img.b2bpic.net/free-photo/beautiful-woman-waving-her-friends_23-2149143970.jpg" + imageSrc="http://img.b2bpic.net/free-photo/beautiful-woman-waving-her-friends_23-2149143970.jpg?_wi=2" imageAlt="Happy customer satisfied with cleaning service" mediaAnimation="slide-up" useInvertedBackground={false} @@ -134,7 +134,7 @@ export default function ContactPage() { title: "Response Time", }, ]} - imageSrc="http://img.b2bpic.net/free-photo/selfie-happy-beautiful-intercultural-business-friends_1262-20363.jpg" + imageSrc="http://img.b2bpic.net/free-photo/selfie-happy-beautiful-intercultural-business-friends_1262-20363.jpg?_wi=4" imageAlt="Professional Vivi's Cleaning team ready to serve" mediaAnimation="opacity" metricsAnimation="slide-up" diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5aaf8c4..c552b29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,61 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Nunito } 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 { Nunito } 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 nunito = Nunito({ variable: "--font-nunito", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Vivi's Cleaning Services - Trusted Local Cleaning in Garner, NC", + description: "Professional house cleaning services in Garner, NC. Trusted by homeowners for deep cleaning, recurring maintenance, and move-out services. Get your free quote today.", + keywords: "house cleaning Garner NC, deep cleaning service, home cleaning Garner, professional cleaners, cleaning service near me", + metadataBase: new URL("https://viviscleaningservices.com"), + alternates: { + canonical: "https://viviscleaningservices.com", + }, + openGraph: { + title: "Vivi's Cleaning Services - Trusted by Garner Homeowners", + description: "Professional house cleaning with attention to detail. 4.9★ rating, 65+ reviews. Free quote today.", + url: "https://viviscleaningservices.com", + siteName: "Vivi's Cleaning Services", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/modern-kitchen-with-contemporary-interior-decor-furnishings_23-2150886738.jpg", + alt: "Vivi's Cleaning Services - Professional Clean Home", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Vivi's Cleaning Services - Garner's Trusted Cleaning", + description: "Professional house cleaning. Detail-focused. Reliable. Trusted by 65+ families.", + images: ["http://img.b2bpic.net/free-photo/modern-kitchen-with-contemporary-interior-decor-furnishings_23-2150886738.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}