20 Commits

Author SHA1 Message Date
c54a101af3 Update theme fonts 2026-04-18 03:35:41 +00:00
db7bad2b64 Update theme fonts 2026-04-18 03:35:41 +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
73811eac29 Update src/app/page.tsx 2026-04-18 03:08:44 +00:00
2c6f38450f Merge version_9 into main
Merge version_9 into main
2026-04-18 03:08:18 +00:00
4d24332810 Update src/app/page.tsx 2026-04-18 03:08:15 +00:00
c593b870d3 Switch to version 7: modified src/app/page.tsx 2026-04-18 03:06:25 +00:00
e2b38ec6df Merge version_8 into main
Merge version_8 into main
2026-04-18 03:05:18 +00:00
962d2aded4 Update src/app/page.tsx 2026-04-18 03:05:12 +00:00
46d709530d Merge version_7 into main
Merge version_7 into main
2026-04-18 03:03:20 +00:00
8426cf38dd Merge version_7 into main
Merge version_7 into main
2026-04-18 02:42:57 +00:00
2 changed files with 10 additions and 5 deletions

View File

@@ -19,6 +19,7 @@ export const metadata: Metadata = {
},
};
const publicSans = Public_Sans({
variable: "--font-public-sans",
subsets: ["latin"],

View File

@@ -119,10 +119,10 @@ export default function LandingPage() {
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://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CV1p6moMxc2HaAeVg3cKHU48Fe/professional-portrait-of-a-female-sales--1776477840494-490efc80.png" },
{ 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://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CV1p6moMxc2HaAeVg3cKHU48Fe/professional-portrait-of-a-male-team-lea-1776477848742-b1053d44.png" },
{ 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://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CV1p6moMxc2HaAeVg3cKHU48Fe/professional-portrait-of-an-agent-in-a-h-1776477860571-fb567af6.png" },
{ 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://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CV1p6moMxc2HaAeVg3cKHU48Fe/professional-portrait-of-an-agent-dark-b-1776477870131-749f9652.png" }
{ 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>
@@ -143,6 +143,10 @@ export default function LandingPage() {
/>
</div>
<div id="carrier-logos" data-section="carrier-logos" className="w-full flex justify-center py-20">
<img src="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CV1p6moMxc2HaAeVg3cKHU48Fe/uploaded-1776483145155-utuxvp06.png" alt="Insurance Carriers" className="max-w-4xl w-full h-auto px-4" />
</div>
<div id="contact" data-section="contact">
<ContactCTA
useInvertedBackground={false}
@@ -169,4 +173,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}