7 Commits

Author SHA1 Message Date
1a23437ca3 Merge version_7 into main
Merge version_7 into main
2026-05-20 17:40:14 +00:00
57433e3630 Update src/app/page.tsx 2026-05-20 17:40:10 +00:00
4ad5459ebe Merge version_7 into main
Merge version_7 into main
2026-05-20 17:36:52 +00:00
7510ba4029 Update src/app/page.tsx 2026-05-20 17:36:49 +00:00
07a5ea9e22 Merge version_6 into main
Merge version_6 into main
2026-05-20 17:34:06 +00:00
2c4e7ede1d Update src/app/page.tsx 2026-05-20 17:33:59 +00:00
7d36d0fe1d Merge version_5 into main
Merge version_5 into main
2026-05-20 17:26:13 +00:00

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import { Star, MessageSquare } from "lucide-react";
import { Star } from "lucide-react";
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi';
@@ -11,6 +11,13 @@ import ProductCardOne from '@/components/sections/product/ProductCardOne';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
export default function AdeptHandymanLandingPage() {
const scrollToSection = (id: string) => {
const element = document.getElementById(id.startsWith('#') ? id.slice(1) : id);
if (element) {
element.scrollIntoView({ behavior: 'smooth' });
}
};
return (
<ThemeProvider
defaultButtonVariant="hover-magnetic"
@@ -50,7 +57,7 @@ export default function AdeptHandymanLandingPage() {
enableKpiAnimation={true}
buttons={[
{ text: "Call Now: (561) 531-5971", onClick: () => window.location.href = "tel:+15615315971" },
{ text: "Schedule Service", href: "#appointment" }
{ text: "Schedule Service", onClick: () => scrollToSection("appointment") }
]}
imageSrc="https://img.b2bpic.net/free-photo/construction-worker-using-hammer-job-site_23-2150530686.jpg?_wi=1"
/>
@@ -63,8 +70,8 @@ export default function AdeptHandymanLandingPage() {
cardTagIcon={Star}
cardAnimation="slide-up"
testimonials={[
{ id: "t1", name: "Verified Customer", imageSrc: "" },
{ id: "t2", name: "Verified Customer", imageSrc: "" }
{ id: "t1", name: "Verified Customer", imageSrc: "https://img.b2bpic.net/free-photo/bucharest-romania-july-30th-2024-young-man-clicks-facebook-page-bookmark_482257-116836.jpg?id=415455995" },
{ id: "t2", name: "Verified Customer", imageSrc: "https://img.b2bpic.net/premium-photo/women-holds-smartphone-with-facebook-application-screen_49553-89.jpg?id=3053090" }
]}
useInvertedBackground={true}
/>
@@ -115,4 +122,4 @@ export default function AdeptHandymanLandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}