diff --git a/src/app/page.tsx b/src/app/page.tsx
index 7e99b4f..65f2833 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -6,7 +6,7 @@ import AboutMetric from '@/components/sections/about/AboutMetric';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow';
-import FooterCard from '@/components/sections/footer/FooterCard';
+import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
@@ -31,16 +31,11 @@ export default function LandingPage() {
@@ -74,15 +61,9 @@ export default function LandingPage() {
useInvertedBackground={false}
title="The NYCBNG Advantage"
metrics={[
- {
- icon: Users,
- label: "Members", value: "2500+"},
- {
- icon: Calendar,
- label: "Events Yearly", value: "50+"},
- {
- icon: MapPin,
- label: "Boroughs", value: "5"},
+ { icon: Users, label: "Members", value: "2500+" },
+ { icon: Calendar, label: "Events Yearly", value: "50+" },
+ { icon: MapPin, label: "Boroughs", value: "5" },
]}
metricsAnimation="slide-up"
/>
@@ -94,15 +75,9 @@ export default function LandingPage() {
textboxLayout="split"
useInvertedBackground={false}
features={[
- {
- icon: Target,
- title: "Strategic Networking", description: "Meet leaders in your specific industry."},
- {
- icon: ShieldCheck,
- title: "Verified Community", description: "High-quality, vetted members only."},
- {
- icon: Zap,
- title: "Exclusive Access", description: "Entry to private NYC events."},
+ { icon: Target, title: "Strategic Networking", description: "Meet leaders in your specific industry." },
+ { icon: ShieldCheck, title: "Verified Community", description: "High-quality, vetted members only." },
+ { icon: Zap, title: "Exclusive Access", description: "Entry to private NYC events." },
]}
title="Why Join NYCBNG?"
description="Our events are curated for high-level engagement and meaningful professional outcomes."
@@ -113,8 +88,7 @@ export default function LandingPage() {
@@ -126,16 +100,9 @@ export default function LandingPage() {
textboxLayout="split"
useInvertedBackground={false}
testimonials={[
- {
- id: "1", name: "Sarah Johnson", role: "VP Operations", testimonial: "The best networking group in NYC. Truly professional.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-cheerful-man-sitting-desk_329181-15290.jpg"},
- {
- id: "2", name: "Michael Chen", role: "CEO", testimonial: "I've gained invaluable leads from every event I've attended.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-businessman-looking-camera_23-2147876753.jpg"},
- {
- id: "3", name: "Emily Rodriguez", role: "Partner", testimonial: "Vetted, high-quality members. Highly recommend joining.", imageSrc: "http://img.b2bpic.net/free-photo/older-woman-holding-glasses-working-laptop_23-2148661215.jpg"},
- {
- id: "4", name: "David Kim", role: "Founder", testimonial: "NYCBNG changed the game for my startup growth.", imageSrc: "http://img.b2bpic.net/free-photo/senior-businessman-walking-outside-modern-office-building_1139-1079.jpg"},
- {
- id: "5", name: "Jennifer Wu", role: "Consultant", testimonial: "A must-join for any serious NYC-based professional.", imageSrc: "http://img.b2bpic.net/free-photo/business-woman-standing_1187-1543.jpg"},
+ { id: "1", name: "Sarah Johnson", role: "VP Operations", testimonial: "The best networking group in NYC. Truly professional.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-cheerful-man-sitting-desk_329181-15290.jpg" },
+ { id: "2", name: "Michael Chen", role: "CEO", testimonial: "I've gained invaluable leads from every event I've attended.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-businessman-looking-camera_23-2147876753.jpg" },
+ { id: "3", name: "Emily Rodriguez", role: "Partner", testimonial: "Vetted, high-quality members. Highly recommend joining.", imageSrc: "http://img.b2bpic.net/free-photo/older-woman-holding-glasses-working-laptop_23-2148661215.jpg" },
]}
title="Member Success Stories"
description="Hear how NYCBNG has transformed business relationships."
@@ -146,12 +113,9 @@ export default function LandingPage() {
);
-}
+}
\ No newline at end of file