23 Commits

Author SHA1 Message Date
27a4ee38fa Update src/app/page.tsx 2026-04-18 03:46:22 +00:00
c47ddb7010 Update src/app/page.tsx 2026-04-18 03:43:42 +00:00
85b107cde2 Merge version_9 into main
Merge version_9 into main
2026-04-18 03:40:54 +00:00
912f65fe3b Merge version_9 into main
Merge version_9 into main
2026-04-18 03:38:59 +00:00
dc49c693cb Merge version_9 into main
Merge version_9 into main
2026-04-18 03:38:13 +00:00
22d1a3ca58 Switch to version 9: modified src/app/page.tsx 2026-04-18 03:36:12 +00:00
17347f4e40 Switch to version 10: modified src/app/page.tsx 2026-04-18 03:36:03 +00:00
2b0455bda6 Switch to version 10: modified src/app/layout.tsx 2026-04-18 03:36:03 +00:00
22a66c53ae Merge version_11 into main
Merge version_11 into main
2026-04-18 03:35:44 +00:00
c54a101af3 Update theme fonts 2026-04-18 03:35:41 +00:00
db7bad2b64 Update theme fonts 2026-04-18 03:35:41 +00:00
f1577a06b1 Merge version_11 into main
Merge version_11 into main
2026-04-18 03:32:45 +00:00
6f7b80bb1f Update src/app/page.tsx 2026-04-18 03:32:38 +00:00
c85745a78e Switch to version 9: modified src/app/page.tsx 2026-04-18 03:20:54 +00:00
4838cbdafb Merge version_10 into main
Merge version_10 into main
2026-04-18 03:18:51 +00:00
cc13077bbb Update src/app/page.tsx 2026-04-18 03:18:45 +00:00
2c1f023132 Merge version_10 into main
Merge version_10 into main
2026-04-18 03:18:19 +00:00
84d62e5b82 Update src/app/page.tsx 2026-04-18 03:18:13 +00:00
4a634481b7 Merge version_8 into main
Merge version_8 into main
2026-04-18 03:15:31 +00:00
4b7a0719b0 Update src/app/page.tsx 2026-04-18 03:15:28 +00:00
5f6714efe3 Switch to version 8: modified src/app/page.tsx 2026-04-18 03:09:58 +00:00
43af14965c Merge version_9 into main
Merge version_9 into main
2026-04-18 03:08:50 +00:00
2c6f38450f Merge version_9 into main
Merge version_9 into main
2026-04-18 03:08:18 +00:00

View File

@@ -9,9 +9,8 @@ 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";
import { DollarSign, Laptop, Phone, Shield, Star, TrendingUp } from "lucide-react";
export default function LandingPage() {
return (
@@ -44,7 +43,7 @@ export default function LandingPage() {
<HeroSplit
background={{ variant: "glowing-orb" }}
title="A Remote Insurance Sales System Producing $800,000+ Per Month"
description="Join Generation Next — a virtual sales team powered by Family First Life helping agents earn $10K+ per month using warm insurance leads. No cold calling required."
description="Join Generation Next — a virtual sales team powered by Family First Life helping agents earn $10K+ per month working from home. No cold calling."
buttons={[
{ text: "Book Your Spot for the Monday 7:30 PM Overview", href: "https://calendly.com/michaelmaloney-familyfirstlife-insurance" },
{ text: "See How It Works", href: "#about" },
@@ -105,28 +104,13 @@ export default function LandingPage() {
features={[
{ title: "1. Get Leads", description: "You receive exclusive warm insurance leads.", bentoComponent: "reveal-icon", icon: Shield },
{ title: "2. Connect", description: "Speak with families who have already requested coverage.", bentoComponent: "reveal-icon", icon: Phone },
{ title: "3. Close & Earn", description: "Help protect families and earn high commissions.", bentoComponent: "reveal-icon", icon: Award },
{ title: "3. Close & Earn", description: "Help protect families and earn high commissions.", bentoComponent: "reveal-icon", icon: Star },
]}
title="How The System Works"
description="No cold calling. No door knocking. No prospecting."
/>
</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: " Michael Maloney", date: "2024", title: "Top Producer", quote: "This system changed everything for my business. I'm hitting $15k+ monthly consistently!", tag: "Pro", avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CV1p6moMxc2HaAeVg3cKHU48Fe/uploaded-1776483590615-2ouk5xub.jpg" },
{ 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>
);
}
}