7 Commits

Author SHA1 Message Date
8462df202a Merge version_8 into main
Merge version_8 into main
2026-03-14 12:42:06 +00:00
10e7d77622 Update src/app/page.tsx 2026-03-14 12:42:02 +00:00
67b1154c9b Merge version_7 into main
Merge version_7 into main
2026-03-14 12:37:48 +00:00
90c7e70008 Update src/app/page.tsx 2026-03-14 12:37:43 +00:00
9bd0ff372b Merge version_6 into main
Merge version_6 into main
2026-03-14 12:36:03 +00:00
7b78b57d05 Update src/app/page.tsx 2026-03-14 12:35:59 +00:00
dc5b1cc12c Merge version_5 into main
Merge version_5 into main
2026-03-14 12:33:16 +00:00

View File

@@ -7,7 +7,7 @@ import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSp
import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne';
@@ -65,7 +65,8 @@ export default function LandingPage() {
<div id="about" data-section="about" className="py-16 md:py-24">
<InlineImageSplitTextAbout
heading={[
{ type: "text", content: "About OLLO Trading" }
{ type: "text", content: "About OLLO Trading" },
{ type: "text", content: "We deliver quality construction and renovation services across South Africa. Our team combines skilled craftsmanship with professional expertise to transform your space. From kitchen and bathroom designs to complete home renovations, we bring your vision to life with attention to detail and premium materials." }
]}
buttons={[
{ text: "Start Your Project", href: "https://wa.me/27716073888" }
@@ -188,13 +189,13 @@ export default function LandingPage() {
useInvertedBackground={false}
metrics={[
{
id: "projects", value: "100+", title: "Projects Completed", items: ["Kitchen renovations", "Bathroom designs", "Home extensions"]
id: "projects", value: "500+", title: "Projects Completed", items: ["Kitchen renovations", "Bathroom designs", "Home extensions"]
},
{
id: "satisfaction", value: "98%", title: "Client Satisfaction", items: ["Quality workmanship", "Timely delivery", "Professional service"]
},
{
id: "years", value: "20", title: "Years of Experience", items: ["Skilled team", "Industry expertise", "Proven excellence"]
id: "years", value: "15+", title: "Years of Experience", items: ["Skilled team", "Industry expertise", "Proven excellence"]
},
{
id: "warranty", value: "10yr", title: "Quality Guarantee", items: ["Material warranty", "Workmanship guarantee", "Peace of mind"]
@@ -204,24 +205,7 @@ export default function LandingPage() {
/>
</div>
<div id="testimonials" data-section="testimonials" className="py-16 md:py-24">
<TestimonialCardTwelve
cardTitle="What Our Clients Say"
cardTag="Customer Testimonials"
cardTagIcon={Star}
cardAnimation="blur-reveal"
useInvertedBackground={true}
testimonials={[
{ id: "testimonial-1", name: "Sarah Johnson", imageSrc: "http://img.b2bpic.net/free-photo/smiling-man_1098-15443.jpg" },
{ id: "testimonial-2", name: "Thandi Mthembu", imageSrc: "http://img.b2bpic.net/free-photo/front-view-young-female-dark-jacket-pink-background_179666-14660.jpg" },
{ id: "testimonial-3", name: "James Petersen", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-man-with-headphones_23-2149155172.jpg" },
{ id: "testimonial-4", name: "Maria Garcia", imageSrc: "http://img.b2bpic.net/free-photo/happy-overjoyed-woman-rejoicing-her-success_74855-3513.jpg" },
{ id: "testimonial-5", name: "Lerato Khumalo", imageSrc: "http://img.b2bpic.net/free-photo/excited-gorgeous-woman-saying-yes_176420-19324.jpg" },
{ id: "testimonial-6", name: "David Chen", imageSrc: "http://img.b2bpic.net/free-photo/handsome-successful-male-entrepreneur-pointing-finger-upper-left-corner-smiling_176420-18939.jpg" }
]}
ariaLabel="Client testimonials section"
/>
</div>
<div id="contact" data-section="contact" className="py-16 md:py-24">
<ContactCTA
@@ -251,4 +235,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}