Update src/app/membership/page.tsx

This commit is contained in:
2026-01-23 11:22:32 +00:00
parent f4baa04215
commit 5a3ebc20e5

View File

@@ -6,7 +6,7 @@ import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo';
import FaqBase from '@/components/sections/faq/FaqBase'; import FaqBase from '@/components/sections/faq/FaqBase';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterCard from '@/components/sections/footer/FooterCard'; import FooterCard from '@/components/sections/footer/FooterCard';
import { Hook, Sparkles, Crown, Facebook, Instagram, Twitter, Youtube } from 'lucide-react'; import { Fish, Sparkles, Crown, Facebook, Instagram, Twitter, Youtube } from 'lucide-react';
export default function MembershipPage() { export default function MembershipPage() {
return ( return (
@@ -32,8 +32,7 @@ export default function MembershipPage() {
{ name: "About", id: "/about" } { name: "About", id: "/about" }
]} ]}
button={{ button={{
text: "Join Network", text: "Join Network", href: "/membership"
href: "/membership"
}} }}
/> />
</div> </div>
@@ -44,57 +43,33 @@ export default function MembershipPage() {
description="Choose the perfect membership level to join Network and unlock exclusive fishing content and events" description="Choose the perfect membership level to join Network and unlock exclusive fishing content and events"
plans={[ plans={[
{ {
id: "basic", id: "basic", badge: "Starter", badgeIcon: Fish,
badge: "Starter", price: "$19/mo", subtitle: "Perfect for casual anglers", buttons: [
badgeIcon: Hook,
price: "$19/mo",
subtitle: "Perfect for casual anglers",
buttons: [
{ text: "Get Started", href: "#" }, { text: "Get Started", href: "#" },
{ text: "Learn More", href: "#" } { text: "Learn More", href: "#" }
], ],
features: [ features: [
"Access to member forum", "Access to member forum", "Monthly newsletter with tips", "Basic fishing guides", "Community chat access"
"Monthly newsletter with tips",
"Basic fishing guides",
"Community chat access"
] ]
}, },
{ {
id: "pro", id: "pro", badge: "Pro", badgeIcon: Sparkles,
badge: "Pro", price: "$49/mo", subtitle: "For serious fishing enthusiasts", buttons: [
badgeIcon: Sparkles,
price: "$49/mo",
subtitle: "For serious fishing enthusiasts",
buttons: [
{ text: "Get Started", href: "#" }, { text: "Get Started", href: "#" },
{ text: "Learn More", href: "#" } { text: "Learn More", href: "#" }
], ],
features: [ features: [
"Everything in Starter", "Everything in Starter", "Exclusive hotspot maps", "Weekly tournament entries", "Priority event registration", "Expert coaching sessions"
"Exclusive hotspot maps",
"Weekly tournament entries",
"Priority event registration",
"Expert coaching sessions"
] ]
}, },
{ {
id: "elite", id: "elite", badge: "Elite", badgeIcon: Crown,
badge: "Elite", price: "$99/mo", subtitle: "The ultimate fishing experience", buttons: [
badgeIcon: Crown,
price: "$99/mo",
subtitle: "The ultimate fishing experience",
buttons: [
{ text: "Get Started", href: "#" }, { text: "Get Started", href: "#" },
{ text: "Learn More", href: "#" } { text: "Learn More", href: "#" }
], ],
features: [ features: [
"Everything in Pro", "Everything in Pro", "VIP tournament access", "Private fishing trips", "One-on-one with expert guides", "Custom fishing plans", "Lifetime member badge"
"VIP tournament access",
"Private fishing trips",
"One-on-one with expert guides",
"Custom fishing plans",
"Lifetime member badge"
] ]
} }
]} ]}
@@ -110,34 +85,22 @@ export default function MembershipPage() {
description="Get answers to common questions about Network membership and fishing events" description="Get answers to common questions about Network membership and fishing events"
faqs={[ faqs={[
{ {
id: "1", id: "1", title: "What fishing experience do I need to join Network?", content: "Network welcomes anglers of all skill levels! Whether you're a complete beginner or an experienced fisherman, we have resources and community members ready to help you improve your skills and enjoy fishing."
title: "What fishing experience do I need to join Network?",
content: "Network welcomes anglers of all skill levels! Whether you're a complete beginner or an experienced fisherman, we have resources and community members ready to help you improve your skills and enjoy fishing."
}, },
{ {
id: "2", id: "2", title: "How often are tournaments and events held?", content: "We organize weekly tournaments during peak seasons and monthly competitions year-round. Pro and Elite members get priority registration and exclusive access to premium events. Check our Events page for the full schedule."
title: "How often are tournaments and events held?",
content: "We organize weekly tournaments during peak seasons and monthly competitions year-round. Pro and Elite members get priority registration and exclusive access to premium events. Check our Events page for the full schedule."
}, },
{ {
id: "3", id: "3", title: "Can I cancel my membership anytime?", content: "Yes! All memberships are month-to-month with no long-term contracts. You can cancel anytime with no penalties. We'd love to have you stay, but we understand if circumstances change."
title: "Can I cancel my membership anytime?",
content: "Yes! All memberships are month-to-month with no long-term contracts. You can cancel anytime with no penalties. We'd love to have you stay, but we understand if circumstances change."
}, },
{ {
id: "4", id: "4", title: "Are the hotspot maps constantly updated?", content: "Absolutely. Our Pro and Elite members contribute real-time data about fishing locations and conditions. Our team also conducts regular scouting to keep maps accurate and current with seasonal changes."
title: "Are the hotspot maps constantly updated?",
content: "Absolutely. Our Pro and Elite members contribute real-time data about fishing locations and conditions. Our team also conducts regular scouting to keep maps accurate and current with seasonal changes."
}, },
{ {
id: "5", id: "5", title: "What if I need fishing equipment recommendations?", content: "Our gear review section features comprehensive guides and member recommendations. Pro and Elite members also get access to exclusive coaching sessions where experts can provide personalized equipment advice."
title: "What if I need fishing equipment recommendations?",
content: "Our gear review section features comprehensive guides and member recommendations. Pro and Elite members also get access to exclusive coaching sessions where experts can provide personalized equipment advice."
}, },
{ {
id: "6", id: "6", title: "How do I participate in the community forum?", content: "All members automatically get forum access once they sign up. You can share catches, ask questions, and connect with other anglers. Our moderation team keeps discussions friendly and on-topic."
title: "How do I participate in the community forum?",
content: "All members automatically get forum access once they sign up. You can share catches, ask questions, and connect with other anglers. Our moderation team keeps discussions friendly and on-topic."
} }
]} ]}
textboxLayout="default" textboxLayout="default"
@@ -156,9 +119,7 @@ export default function MembershipPage() {
{ name: "subject", type: "text", placeholder: "Subject", required: true } { name: "subject", type: "text", placeholder: "Subject", required: true }
]} ]}
textarea={{ textarea={{
name: "message", name: "message", placeholder: "Tell us what you're thinking...", rows: 5,
placeholder: "Tell us what you're thinking...",
rows: 5,
required: true required: true
}} }}
useInvertedBackground="noInvert" useInvertedBackground="noInvert"