Merge version_5 into main #6

Merged
bender merged 1 commits from version_5 into main 2026-04-18 02:23:42 +00:00

View File

@@ -9,7 +9,7 @@ import HeroSplit from '@/components/sections/hero/HeroSplit';
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import PricingCardEight from '@/components/sections/pricing/PricingCardEight';
import TeamCardOne from '@/components/sections/team/TeamCardOne';
import TeamCardEleven from '@/components/sections/team/TeamCardEleven';
import TextAbout from '@/components/sections/about/TextAbout';
import { Award, DollarSign, Laptop, Phone, Shield, Star, TrendingUp } from "lucide-react";
@@ -113,19 +113,21 @@ export default function LandingPage() {
</div>
<div id="team" data-section="team">
<TeamCardOne
carouselMode="buttons"
<TeamCardEleven
animationType="blur-reveal"
gridVariant="one-large-left-three-stacked-right"
textboxLayout="split"
useInvertedBackground={false}
members={[
{ id: "t1", name: "Michael Maloney", role: "Director", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CV1p6moMxc2HaAeVg3cKHU48Fe/professional-headshot-of-a-successful-sa-1776477806821-51cf0d35.png" },
{ id: "t2", name: "Top Producer", role: "Lead Mentor", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CV1p6moMxc2HaAeVg3cKHU48Fe/professional-headshot-of-a-team-mentor-c-1776477814942-eeecf2d1.png" },
{ id: "t3", name: "Sales Expert", role: "Closing Specialist", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CV1p6moMxc2HaAeVg3cKHU48Fe/professional-headshot-of-a-top-producing-1776477823206-78067cb9.png" },
]}
title="Why Agents Join Generation Next"
description="Join a proven sales organization powered by Family First Life with dedicated training and mentorship."
textboxLayout="split"
groups={[
{
id: "leadership", groupTitle: "Team Leadership", members: [
{ id: "t1", title: "Michael Maloney", subtitle: "Director", detail: "Leading the vision", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CV1p6moMxc2HaAeVg3cKHU48Fe/professional-headshot-of-a-successful-sa-1776477806821-51cf0d35.png" },
{ id: "t2", title: "Top Producer", subtitle: "Lead Mentor", detail: "Guiding new agents", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CV1p6moMxc2HaAeVg3cKHU48Fe/professional-headshot-of-a-team-mentor-c-1776477814942-eeecf2d1.png" },
{ id: "t3", title: "Sales Expert", subtitle: "Closing Specialist", detail: "Closing mastery", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CV1p6moMxc2HaAeVg3cKHU48Fe/professional-headshot-of-a-top-producing-1776477823206-78067cb9.png" },
]
}
]}
/>
</div>
@@ -171,4 +173,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}