diff --git a/src/app/membership/page.tsx b/src/app/membership/page.tsx index c34b586..b783aab 100644 --- a/src/app/membership/page.tsx +++ b/src/app/membership/page.tsx @@ -7,7 +7,7 @@ import FooterBase from '@/components/sections/footer/FooterBase'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import PricingCardFive from '@/components/sections/pricing/PricingCardFive'; -export default function LandingPage() { +export default function MembershipPage() { return ( @@ -56,57 +41,9 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} plans={[ - { - id: "basic", - tag: "Starter", - price: "$99", - period: "/year", - description: "Core membership.", - button: { - text: "Register Now", - href: "/payment", - }, - featuresTitle: "Basic Benefits", - features: [ - "Digital Certificate", - "Email Support", - "Community Access", - ], - }, - { - id: "premium", - tag: "Value", - price: "$199", - period: "/year", - description: "Advanced benefits.", - button: { - text: "Register Now", - href: "/payment", - }, - featuresTitle: "Premium Benefits", - features: [ - "Priority Support", - "Publishing Resource Hub", - "Professional Listing", - ], - }, - { - id: "vip", - tag: "Elite", - price: "$399", - period: "/year", - description: "Ultimate recognition.", - button: { - text: "Register Now", - href: "/payment", - }, - featuresTitle: "VIP Benefits", - features: [ - "Featured Member Spotlight", - "1-on-1 Mentorship", - "Annual Industry Conference Pass", - ], - }, + { id: "basic", tag: "Starter", price: "$99", period: "/year", description: "Core membership.", button: { text: "Register Now", href: "/payment" }, featuresTitle: "Basic Benefits", features: ["Digital Certificate", "Email Support", "Community Access"] }, + { id: "premium", tag: "Value", price: "$199", period: "/year", description: "Advanced benefits.", button: { text: "Register Now", href: "/payment" }, featuresTitle: "Premium Benefits", features: ["Priority Support", "Publishing Resource Hub", "Professional Listing"] }, + { id: "vip", tag: "Elite", price: "$399", period: "/year", description: "Ultimate recognition.", button: { text: "Register Now", href: "/payment" }, featuresTitle: "VIP Benefits", features: ["Featured Member Spotlight", "1-on-1 Mentorship", "Annual Industry Conference Pass"] }, ]} title="Membership Levels" description="Choose your path to professional success." @@ -122,26 +59,14 @@ export default function LandingPage() { description="Enhance your career today." features={[ { - title: "Tools", - description: "Access elite software.", - media: { - imageSrc: "http://img.b2bpic.net/free-photo/authentic-book-club-scene_23-2150104643.jpg?_wi=2", - }, + title: "Tools", description: "Access elite software.", media: { imageSrc: "http://img.b2bpic.net/free-photo/authentic-book-club-scene_23-2150104643.jpg" }, items: [], reverse: false, - imageSrc: "http://img.b2bpic.net/free-photo/authentic-book-club-scene_23-2150104633.jpg?_wi=4", - imageAlt: "Authentic book club scene", }, { - title: "Knowledge", - description: "Expert webinars.", - media: { - imageSrc: "http://img.b2bpic.net/free-photo/actors-group-library-prepare-dramatic-theatre-role-play-focused-dialogue-memorization_482257-136451.jpg", - }, + title: "Knowledge", description: "Expert webinars.", media: { imageSrc: "http://img.b2bpic.net/free-photo/actors-group-library-prepare-dramatic-theatre-role-play-focused-dialogue-memorization_482257-136451.jpg" }, items: [], reverse: true, - imageSrc: "http://img.b2bpic.net/free-photo/mature-woman-student-library-highlighting-important-ideas-exams-focusing-her-studies_482257-132961.jpg?_wi=3", - imageAlt: "Authentic book club scene", }, ]} /> @@ -150,44 +75,8 @@ export default function LandingPage() {