6 Commits

Author SHA1 Message Date
c1a052c176 Merge version_2 into main
Merge version_2 into main
2026-05-12 00:28:56 +00:00
b1d20f0d5f Update src/app/page.tsx 2026-05-12 00:28:52 +00:00
89f7e0424c Merge version_1 into main
Merge version_1 into main
2026-05-12 00:26:19 +00:00
9b537a4c61 Merge version_1 into main
Merge version_1 into main
2026-05-12 00:25:39 +00:00
4b8fab74cb Merge version_1 into main
Merge version_1 into main
2026-05-12 00:24:59 +00:00
f56db9dfd8 Merge version_1 into main
Merge version_1 into main
2026-05-12 00:24:23 +00:00

View File

@@ -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') }]}
/>
</div>
@@ -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...') }]}
/>
</div>
@@ -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}`)}
/>
</div>
@@ -210,4 +213,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}