Merge version_2 into main #3

Merged
bender merged 1 commits from version_2 into main 2026-04-17 00:03:52 +00:00

View File

@@ -3,7 +3,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import HeroSplitDoubleCarousel from '@/components/sections/hero/HeroSplitDoubleCarousel';
@@ -11,7 +11,7 @@ import MediaAbout from '@/components/sections/about/MediaAbout';
import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
import { BarChart2, Lightbulb, Target } from "lucide-react";
export default function LandingPage() {
@@ -179,20 +179,21 @@ export default function LandingPage() {
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardTen
<TestimonialCardThirteen
textboxLayout="default"
useInvertedBackground={false}
showRating={true}
animationType="slide-up"
testimonials={[
{
id: "1", title: "Life Changing", quote: "Transformative coaching that helped me see myself as a leader.", name: "Ros C.", role: "Executive", imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1570.jpg"},
id: "1", testimonial: "Transformative coaching that helped me see myself as a leader.", name: "Ros C.", handle: "Executive", rating: 5},
{
id: "2", title: "Incredible Results", quote: "I've never felt more clarity in my business decisions.", name: "Michael S.", role: "CEO", imageSrc: "http://img.b2bpic.net/free-photo/smiling-woman-close-window_1098-433.jpg"},
id: "2", testimonial: "I've never felt more clarity in my business decisions.", name: "Michael S.", handle: "CEO", rating: 5},
{
id: "3", title: "Highly Recommended", quote: "A true partner in my growth journey.", name: "Emma L.", role: "Director", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-business-people-working-together_23-2150384850.jpg"},
id: "3", testimonial: "A true partner in my growth journey.", name: "Emma L.", handle: "Director", rating: 5},
{
id: "4", title: "Strategic Excellence", quote: "The mindset mastery work was a complete game changer.", name: "David W.", role: "Founder", imageSrc: "http://img.b2bpic.net/free-photo/men-discussing-eco-project-close-up_23-2148920596.jpg"},
id: "4", testimonial: "The mindset mastery work was a complete game changer.", name: "David W.", handle: "Founder", rating: 5},
{
id: "5", title: "Professionalism", quote: "Excellent, highly personalized approach.", name: "Sarah K.", role: "Manager", imageSrc: "http://img.b2bpic.net/free-photo/close-up-businessman-with-tie_1098-2867.jpg"},
id: "5", testimonial: "Excellent, highly personalized approach.", name: "Sarah K.", handle: "Manager", rating: 5},
]}
title="What our clients say."
description="Real impact, real results."
@@ -200,7 +201,7 @@ export default function LandingPage() {
</div>
<div id="faq" data-section="faq">
<FaqSplitMedia
<FaqDouble
textboxLayout="default"
useInvertedBackground={true}
faqs={[
@@ -211,12 +212,9 @@ export default function LandingPage() {
{
id: "f3", title: "Do you offer free calls?", content: "Yes, start with a 30-minute discovery session."},
]}
imageSrc="http://img.b2bpic.net/free-photo/still-life-laptop-dressed-table_52683-147316.jpg"
mediaAnimation="slide-up"
faqsAnimation="slide-up"
title="Common Questions."
description="Find everything you need to know about our coaching process."
faqsAnimation="slide-up"
imageAlt="Workspace"
/>
</div>
@@ -268,4 +266,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}