diff --git a/src/app/page.tsx b/src/app/page.tsx
index 9562b60..6818e9a 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -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() {