Update src/app/page.tsx

This commit is contained in:
2026-03-03 08:50:12 +00:00
parent 9dd465181f
commit a8ee593d53

View File

@@ -10,7 +10,7 @@ import TeamCardTwo from '@/components/sections/team/TeamCardTwo';
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
import ContactCenter from '@/components/sections/contact/ContactCenter'; import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import { Zap, Flame, Instagram, Linkedin, Globe } from 'lucide-react'; import { Zap, Flame, Instagram, Linkedin, Globe, Star } from 'lucide-react';
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -114,7 +114,8 @@ export default function LandingPage() {
] ]
}, },
{ {
id: "pro", tag: "Pro Plan", price: "$59", period: "/month", description: "Our most popular plan. 24/7 gym access with unlimited classes and personal coaching consultations.", button: { text: "Choose Pro", href: "contact" }, id: "pro", tag: "Pro Plan", tagIcon: Star,
price: "$59", period: "/month", description: "Our most popular plan. 24/7 gym access with unlimited classes and personal coaching consultations.", button: { text: "Choose Pro", href: "contact" },
featuresTitle: "What's Included:", features: [ featuresTitle: "What's Included:", features: [
"24/7 gym access", "Unlimited classes", "Monthly fitness assessment", "Personalized workout plan", "Priority equipment access", "Member-only events" "24/7 gym access", "Unlimited classes", "Monthly fitness assessment", "Personalized workout plan", "Priority equipment access", "Member-only events"
] ]
@@ -218,4 +219,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }