Switch to version 8: modified src/app/page.tsx

This commit is contained in:
2026-04-18 03:09:58 +00:00
parent 43af14965c
commit 5f6714efe3

View File

@@ -9,7 +9,6 @@ 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 TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
import TextAbout from '@/components/sections/about/TextAbout';
import { Award, DollarSign, Laptop, Phone, Shield, Star, TrendingUp } from "lucide-react";
@@ -112,21 +111,6 @@ export default function LandingPage() {
/>
</div>
<div id="team" data-section="team">
<TestimonialCardFive
title="Our Agents"
description="Hear from our top performers about their experience with Generation Next."
textboxLayout="default"
useInvertedBackground={false}
testimonials={[
{ id: "t1", name: "Sarah J.", date: "2024", title: "Top Producer", quote: "This system changed everything for my business. I'm hitting $15k+ monthly consistently!", tag: "Pro", avatarSrc: "https://i.pravatar.cc/150?u=sarah" },
{ id: "t2", name: "Mike D.", date: "2024", title: "Mentor", quote: "The training here is unmatched. It's the best environment for any serious insurance agent.", tag: "Leader", avatarSrc: "https://i.pravatar.cc/150?u=mike" },
{ id: "t3", name: "David L.", date: "2024", title: "Rising Star", quote: "In my first 30 days, I replaced my corporate salary. The leads are actual gold.", tag: "Agent", avatarSrc: "https://i.pravatar.cc/150?u=david" },
{ id: "t4", name: "Elena M.", date: "2024", title: "Top Closer", quote: "I never thought insurance could be this fun. The system makes closing so simple.", tag: "Pro", avatarSrc: "https://i.pravatar.cc/150?u=elena" }
]}
/>
</div>
<div id="pricing" data-section="pricing">
<PricingCardEight
animationType="slide-up"
@@ -169,4 +153,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}