5 Commits

Author SHA1 Message Date
bca0988279 Update src/app/page.tsx 2026-04-09 03:39:22 +00:00
1c2fa5a0bf Merge version_3 into main
Merge version_3 into main
2026-04-09 03:37:44 +00:00
e98e5efaba Update src/app/page.tsx 2026-04-09 03:37:41 +00:00
a97eafcfc1 Merge version_2 into main
Merge version_2 into main
2026-04-09 03:35:21 +00:00
a747d75392 Merge version_2 into main
Merge version_2 into main
2026-04-09 03:34:46 +00:00

View File

@@ -15,6 +15,11 @@ import FooterSimple from "@/components/sections/footer/FooterSimple";
import { Sparkles, Star, Home } from "lucide-react";
export default function HomePage() {
const handleButtonClick = (actionName: string) => {
console.log(`${actionName} clicked! Implement your custom logic here (e.g., API call, navigation).`);
alert(`Action triggered: ${actionName}`);
};
return (
<ThemeProvider
defaultButtonVariant="expand-hover"
@@ -38,7 +43,7 @@ export default function HomePage() {
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" },
]}
button={{ text: "Get Quote", href: "#contact" }}
button={{ text: "Get Quote", onClick: () => handleButtonClick("Get Quote") }}
/>
</div>
@@ -49,7 +54,7 @@ export default function HomePage() {
title="Keeping Your Home Pristine"
description="Expert pressure washing, cleaning, and removal services to restore your property's curb appeal. Reliable care you can trust."
buttons={[
{ text: "Book Service", href: "#contact" },
{ text: "Book Service", onClick: () => handleButtonClick("Book Service") },
]}
imageSrc="http://img.b2bpic.net/free-photo/south-asian-man-indian-male-washing-his-white-transportation-car-wash_627829-5012.jpg"
testimonials={[
@@ -166,6 +171,8 @@ export default function HomePage() {
name: "service", label: "Service Required", options: ["Pressure Washing", "Window Washing", "Trash Can Washing", "Gutter Cleaning", "Carpet Cleaning", "Junk Removal"]
}}
textarea={{ name: "message", placeholder: "How can we help?", rows: 4 }}
buttonText="Request My Free Estimate"
onSubmit={(data) => console.log("Form Submitted:", data)}
imageSrc="http://img.b2bpic.net/free-photo/smiling-young-male-gardener-wearing-gardening-hat-gloves-holds-spade-neck_141793-115982.jpg"
useInvertedBackground={false}
/>
@@ -174,8 +181,8 @@ export default function HomePage() {
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{ title: "Services", items: [{ label: "Pressure Washing" }, { label: "Window Washing" }, { label: "Trash Can Cleaning" }] },
{ title: "Company", items: [{ label: "About Us" }, { label: "Testimonials" }, { label: "FAQ" }] },
{ title: "Services", items: [{ label: "Pressure Washing", onClick: () => handleButtonClick("Pressure Washing") }, { label: "Window Washing", onClick: () => handleButtonClick("Window Washing") }, { label: "Trash Can Cleaning", onClick: () => handleButtonClick("Trash Can Cleaning") }] },
{ title: "Company", items: [{ label: "About Us", onClick: () => handleButtonClick("About Us") }, { label: "Testimonials", onClick: () => handleButtonClick("Testimonials") }, { label: "FAQ", onClick: () => handleButtonClick("FAQ") }] },
{ title: "Contact", items: [{ label: "contact@rbthomeservices.com" }, { label: "(555) 000-1234" }] }
]}
bottomLeftText="© 2025 RBT Home Services"