Merge version_2 into main #2

Merged
bender merged 1 commits from version_2 into main 2026-03-03 19:24:10 +00:00

View File

@@ -6,7 +6,6 @@ import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTe
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import { BookOpen, Globe, Target, TrendingUp, Zap } from 'lucide-react';
@@ -31,7 +30,6 @@ export default function LandingPage() {
{ name: "Home", id: "hero" },
{ name: "About", id: "about" },
{ name: "Services", id: "services" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" },
]}
brandName="Gavin Healey"
@@ -58,13 +56,16 @@ export default function LandingPage() {
testimonials={[
{
name: "Marcus Johnson", handle: "Trader & Entrepreneur", testimonial: "Gavin's trading strategies completely transformed my approach to the markets. I went from $500/month to $5,000+. Highly recommend!", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=1"},
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=1"
},
{
name: "Sarah Chen", handle: "Digital Business Owner", testimonial: "The Master Resell Rights system is a game-changer. My passive income stream is now fully automated. Best investment ever.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=2"},
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=2"
},
{
name: "David Martinez", handle: "Small Business Owner", testimonial: "His website design service saved my business. We went from zero online presence to getting 20+ qualified leads per month.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=3"},
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=3"
},
]}
testimonialRotationInterval={5000}
useInvertedBackground={false}
@@ -76,7 +77,7 @@ export default function LandingPage() {
<InlineImageSplitTextAbout
heading={[{ type: "text", content: "Who Is Gavin Healey?" }]}
useInvertedBackground={true}
buttons={[{ text: "Learn My Story", href: "#services" }]}
buttons={[{ text: "Learn My Story", href: "services" }]}
buttonAnimation="slide-up"
/>
</div>
@@ -90,16 +91,20 @@ export default function LandingPage() {
features={[
{
title: "Trading Education", description: "Learn risk management, strategy development, market structure, and disciplined execution with proven frameworks.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-working-with-laptop_1098-658.jpg", imageAlt: "Trading education and market analysis", buttonIcon: TrendingUp,
buttonHref: "contact"},
buttonHref: "contact"
},
{
title: "Digital Marketing Academy (MRR)", description: "Step-by-step training on how to sell digital products with 100% profit retention and fully automated systems.", imageSrc: "http://img.b2bpic.net/free-photo/businessman-holding-tablet-with-digital-marketing-concept_9975-22100.jpg", imageAlt: "Digital marketing and sales automation", buttonIcon: Zap,
buttonHref: "contact"},
buttonHref: "contact"
},
{
title: "Website Design for Businesses", description: "Professional website design for low-revenue businesses, blue collar companies, and businesses needing more leads and customers.", imageSrc: "http://img.b2bpic.net/free-vector/gradient-ui-ux-landing-page_52683-70252.jpg", imageAlt: "Modern website design showcase", buttonIcon: Globe,
buttonHref: "contact"},
buttonHref: "contact"
},
{
title: "Mentorship & Accountability", description: "Direct access to proven systems, real-world execution strategies, and ongoing support to keep you on track.", imageSrc: "http://img.b2bpic.net/free-photo/hand-holding-coin-stack-money-wood-table-pension-fund-concept_335224-1410.jpg", imageAlt: "Financial growth and success metrics", buttonIcon: Target,
buttonHref: "contact"},
buttonHref: "contact"
},
]}
textboxLayout="default"
useInvertedBackground={false}
@@ -127,38 +132,6 @@ export default function LandingPage() {
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardSixteen
title="What My Students Say"
description="Real results from real people who've taken action and transformed their financial futures."
tag="Social Proof"
tagAnimation="slide-up"
testimonials={[
{
id: "1", name: "Marcus Johnson", role: "Professional Trader", company: "Independent", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=4"},
{
id: "2", name: "Sarah Chen", role: "MRR Business Owner", company: "Digital Ventures", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=5"},
{
id: "3", name: "David Martinez", role: "Business Owner", company: "Plumbing Services Co", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=6"},
{
id: "4", name: "Jessica Wong", role: "Entrepreneur", company: "E-commerce Store", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=7"},
]}
kpiItems={[
{ value: "500+", label: "Students Trained" },
{ value: "$2M+", label: "Student Revenue Generated" },
{ value: "95%", label: "Success Rate" },
]}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
ariaLabel="Student testimonials and social proof section"
/>
</div>
<div id="contact" data-section="contact">
<ContactSplitForm
title="Let's Build Your Income"
@@ -186,23 +159,22 @@ export default function LandingPage() {
columns={[
{
title: "Services", items: [
{ label: "Trading Education", href: "#services" },
{ label: "MRR Academy", href: "#services" },
{ label: "Website Design", href: "#services" },
{ label: "Trading Education", href: "services" },
{ label: "MRR Academy", href: "services" },
{ label: "Website Design", href: "services" },
],
},
{
title: "Resources", items: [
{ label: "About Me", href: "#about" },
{ label: "Testimonials", href: "#testimonials" },
{ label: "Book a Call", href: "#contact" },
{ label: "About Me", href: "about" },
{ label: "Book a Call", href: "contact" },
],
},
{
title: "Contact", items: [
{ label: "Email", href: "mailto:gavin.101xd@gmail.com" },
{ label: "Phone", href: "tel:+12088708907" },
{ label: "Contact Form", href: "#contact" },
{ label: "Contact Form", href: "contact" },
],
},
]}