diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 56db6f5..8d426ce 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -95,7 +95,7 @@ export default function AboutPage() { { title: "Licensed & Insured", description: "All work meets Florida building codes and is backed by comprehensive insurance protection.", - imageSrc: "http://img.b2bpic.net/free-photo/young-girl-with-book_93675-135579.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/young-girl-with-book_93675-135579.jpg?_wi=1", imageAlt: "Licensed and insured", button: { text: "Learn More", @@ -105,7 +105,7 @@ export default function AboutPage() { { title: "Satisfaction Guarantee", description: "We stand behind every job. If you're not satisfied, we'll make it right—no questions asked.", - imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-home_23-2149412549.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-home_23-2149412549.jpg?_wi=1", imageAlt: "Satisfaction guaranteed", button: { text: "See Reviews", @@ -135,7 +135,7 @@ export default function AboutPage() { { title: "Transparent Pricing", description: "No hidden fees. Fair quotes upfront. We explain every cost before we start work.", - imageSrc: "http://img.b2bpic.net/free-photo/young-girl-with-book_93675-135579.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/young-girl-with-book_93675-135579.jpg?_wi=2", imageAlt: "Fair pricing", button: { text: "Get Quote", @@ -145,7 +145,7 @@ export default function AboutPage() { { title: "Professional Team", description: "Skilled, courteous professionals trained in all aspects of handyman work and customer service.", - imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-home_23-2149412549.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-home_23-2149412549.jpg?_wi=2", imageAlt: "Professional team", button: { text: "Meet Our Team", diff --git a/src/app/booking/page.tsx b/src/app/booking/page.tsx index 9a9b823..9ea3e7b 100644 --- a/src/app/booking/page.tsx +++ b/src/app/booking/page.tsx @@ -48,7 +48,7 @@ export default function BookingPage() { ]} buttonAnimation="slide-up" layoutOrder="default" - imageSrc="http://img.b2bpic.net/free-photo/medium-shot-smiley-man-holding-iron_23-2149916302.jpg" + imageSrc="http://img.b2bpic.net/free-photo/medium-shot-smiley-man-holding-iron_23-2149916302.jpg?_wi=5" imageAlt="Book handyman service" mediaAnimation="blur-reveal" frameStyle="card" diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0a803b2..8c40008 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,50 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Mulish } 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 { Mulish } 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 mulish = Mulish({ variable: "--font-mulish", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Handyman in Lake City | Ringer Renovation LLC", + description: "Professional handyman services in Lake City, Florida. Licensed & insured. Drywall, painting, plumbing, electrical, furniture assembly. Call 656-242-2361.", + keywords: "handyman Lake City, emergency handyman, home repair, drywall repair, painting service, local handyman", + robots: { + index: true, + follow: true, + }, + openGraph: { + title: "Ringer Renovation LLC | Professional Handyman in Lake City", + description: "Licensed handyman services in Lake City. Fast response, fair pricing, satisfaction guaranteed. Call 656-242-2361.", + url: "https://ringerrenovation.com", + siteName: "Ringer Renovation LLC", + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "Professional Handyman in Lake City", + description: "Ringer Renovation LLC - Licensed & Insured Handyman Services", + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +53,9 @@ export default function RootLayout({ return ( - + {children}