From b1d20f0d5f84016c2a1ebff05df392b0a7e79fe9 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 12 May 2026 00:28:52 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index f5a3d09..ef8ec64 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -12,7 +12,7 @@ import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatin import ProductCardThree from '@/components/sections/product/ProductCardThree'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; -import { Building2, CheckCircle, ListChecks, Sparkles, Wrench, Waves, Hammer } from "lucide-react"; +import { Building2, CheckCircle, ListChecks, Sparkles, Waves, Hammer } from "lucide-react"; export default function LandingPage() { return ( @@ -61,8 +61,8 @@ export default function LandingPage() { { imageSrc: "http://img.b2bpic.net/free-photo/concrete-building-clear-sky-seen-through-window_250224-77.jpg", imageAlt: "Renovation transformation" }, ]} buttons={[ - { text: "Get a Free Quote", href: "#contact" }, - { text: "Call 0403 561 799", href: "tel:0403561799" }, + { text: "Get a Free Quote", onClick: () => document.getElementById('contact')?.scrollIntoView({ behavior: 'smooth' }) }, + { text: "Call 0403 561 799", onClick: () => window.location.href = 'tel:0403561799' }, ]} avatars={[ { src: "http://img.b2bpic.net/free-photo/young-hispanic-man-with-beard-working-home-renovation-smiling-cheerful-playing-peek-boo-with-hands-showing-face-surprised-exited_839833-5465.jpg", alt: "Client profile 1" }, @@ -87,6 +87,7 @@ export default function LandingPage() { ]} title="Our Services" description="Expert construction and transformation services designed for the modern Sydney home." + buttons={[{ text: "Explore Services", onClick: () => alert('View our full service details') }]} /> @@ -107,12 +108,12 @@ export default function LandingPage() { animationType="slide-up" useInvertedBackground={false} products={[ - { id: "p1", name: "Balcony Transformation", price: "Custom Project", imageSrc: "http://img.b2bpic.net/free-photo/architect-working-blueprints-her-desk-working-new-projects-architecture-design_482257-33181.jpg" }, - { id: "p2", name: "Modern Interior Build", price: "Custom Project", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-view-hand-holding-small-house-model-pencil-blueprint_23-2148203980.jpg" }, - { id: "p3", name: "Concrete Foundation", price: "Custom Project", imageSrc: "http://img.b2bpic.net/free-photo/view-city-from-bridge_23-2149186626.jpg" }, - { id: "p4", name: "Full Renovation", price: "Custom Project", imageSrc: "http://img.b2bpic.net/free-photo/new-york-city-ny-usa-october-20-2020-vessel-hudson-yards-staircase-designed-by-architect-thomas-heatherwick-midtown-manhattan-west_1321-2491.jpg" }, - { id: "p5", name: "Architectural Detail", price: "Custom Project", imageSrc: "http://img.b2bpic.net/free-photo/abstract-city-wall_23-2148106977.jpg" }, - { id: "p6", name: "Outdoor Improvement", price: "Custom Project", imageSrc: "http://img.b2bpic.net/free-photo/serious-african-american-lady-safety-helmet-standing-near-model-building-table_23-2148039867.jpg" }, + { id: "p1", name: "Balcony Transformation", price: "Custom Project", imageSrc: "http://img.b2bpic.net/free-photo/architect-working-blueprints-her-desk-working-new-projects-architecture-design_482257-33181.jpg", onProductClick: () => alert('Showing details for Balcony Transformation') }, + { id: "p2", name: "Modern Interior Build", price: "Custom Project", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-view-hand-holding-small-house-model-pencil-blueprint_23-2148203980.jpg", onProductClick: () => alert('Showing details for Interior Build') }, + { id: "p3", name: "Concrete Foundation", price: "Custom Project", imageSrc: "http://img.b2bpic.net/free-photo/view-city-from-bridge_23-2149186626.jpg", onProductClick: () => alert('Showing details for Foundation') }, + { id: "p4", name: "Full Renovation", price: "Custom Project", imageSrc: "http://img.b2bpic.net/free-photo/new-york-city-ny-usa-october-20-2020-vessel-hudson-yards-staircase-designed-by-architect-thomas-heatherwick-midtown-manhattan-west_1321-2491.jpg", onProductClick: () => alert('Showing details for Full Renovation') }, + { id: "p5", name: "Architectural Detail", price: "Custom Project", imageSrc: "http://img.b2bpic.net/free-photo/abstract-city-wall_23-2148106977.jpg", onProductClick: () => alert('Showing details for Detail Work') }, + { id: "p6", name: "Outdoor Improvement", price: "Custom Project", imageSrc: "http://img.b2bpic.net/free-photo/serious-african-american-lady-safety-helmet-standing-near-model-building-table_23-2148039867.jpg", onProductClick: () => alert('Showing details for Outdoor Work') }, ]} title="Project Showcase" description="A glimpse of our recent work and amazing transformations." @@ -158,6 +159,7 @@ export default function LandingPage() { ]} title="Customer Stories" description="See why our clients choose Southern Star." + buttons={[{ text: "See More Testimonials", onClick: () => alert('Loading more stories...') }]} /> @@ -184,6 +186,7 @@ export default function LandingPage() { tag="Get Started" title="Ready To Transform Your Space?" description="Get in touch for a free quote today." + onSubmit={(email) => alert(`Thank you for your interest! Submission received for ${email}`)} /> @@ -210,4 +213,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +} -- 2.49.1