diff --git a/src/app/page.tsx b/src/app/page.tsx index d50a165..c5544cc 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,13 +2,13 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen'; import FooterBase from '@/components/sections/footer/FooterBase'; import HeroSplit from '@/components/sections/hero/HeroSplit'; import LegalSection from '@/components/legal/LegalSection'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import PricingCardFive from '@/components/sections/pricing/PricingCardFive'; import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; +import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen'; export default function LandingPage() { return ( @@ -28,26 +28,11 @@ export default function LandingPage() { @@ -142,30 +82,9 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} features={[ - { - tag: "01", - title: "Certification", - subtitle: "Recognition", - description: "Earn professional status with our official membership certificate.", - imageSrc: "http://img.b2bpic.net/free-photo/authentic-book-club-scene_23-2150104633.jpg?_wi=2", - imageAlt: "professional writers booksellers network", - }, - { - tag: "02", - title: "Guidance", - subtitle: "Resources", - description: "Gain full access to our curated publishing and bookselling guides.", - imageSrc: "http://img.b2bpic.net/free-photo/mature-woman-student-library-highlighting-important-ideas-exams-focusing-her-studies_482257-132961.jpg?_wi=1", - imageAlt: "professional writers booksellers network", - }, - { - tag: "03", - title: "Networking", - subtitle: "Community", - description: "Connect with writers and booksellers globally through exclusive events.", - imageSrc: "http://img.b2bpic.net/free-photo/three-serious-business-people-working-with-documents-desk_1262-15308.jpg?_wi=1", - imageAlt: "professional writers booksellers network", - }, + { tag: "01", title: "Certification", subtitle: "Recognition", description: "Earn professional status with our official membership certificate.", imageSrc: "http://img.b2bpic.net/free-photo/authentic-book-club-scene_23-2150104633.jpg", imageAlt: "professional writers booksellers network" }, + { tag: "02", title: "Guidance", subtitle: "Resources", description: "Gain full access to our curated publishing and bookselling guides.", imageSrc: "http://img.b2bpic.net/free-photo/mature-woman-student-library-highlighting-important-ideas-exams-focusing-her-studies_482257-132961.jpg", imageAlt: "professional writers booksellers network" }, + { tag: "03", title: "Networking", subtitle: "Community", description: "Connect with writers and booksellers globally through exclusive events.", imageSrc: "http://img.b2bpic.net/free-photo/three-serious-business-people-working-with-documents-desk_1262-15308.jpg", imageAlt: "professional writers booksellers network" }, ]} title="Why Join MBO?" description="Unlock a world of professional advantages crafted for industry experts." @@ -178,57 +97,9 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} plans={[ - { - id: "basic", - tag: "Entry", - price: "Basic", - period: "/year", - description: "Perfect for starters.", - button: { - text: "View Plans", - href: "/membership", - }, - featuresTitle: "Includes", - features: [ - "Digital Certificate", - "Email Support", - "Network Access", - ], - }, - { - id: "premium", - tag: "Popular", - price: "Premium", - period: "/year", - description: "For established pros.", - button: { - text: "View Plans", - href: "/membership", - }, - featuresTitle: "Includes", - features: [ - "Priority Support", - "Publishing Tools", - "Member Listing", - ], - }, - { - id: "vip", - tag: "Exclusive", - price: "VIP", - period: "/year", - description: "Top-tier benefits.", - button: { - text: "View Plans", - href: "/membership", - }, - featuresTitle: "Includes", - features: [ - "Featured Status", - "Exclusive Events", - "1-on-1 Guidance", - ], - }, + { id: "basic", tag: "Entry", price: "Basic", period: "/year", description: "Perfect for starters.", button: { text: "View Plans", href: "/membership" }, featuresTitle: "Includes", features: ["Digital Certificate", "Email Support", "Network Access"] }, + { id: "premium", tag: "Popular", price: "Premium", period: "/year", description: "For established pros.", button: { text: "View Plans", href: "/membership" }, featuresTitle: "Includes", features: ["Priority Support", "Publishing Tools", "Member Listing"] }, + { id: "vip", tag: "Exclusive", price: "VIP", period: "/year", description: "Top-tier benefits.", button: { text: "View Plans", href: "/membership" }, featuresTitle: "Includes", features: ["Featured Status", "Exclusive Events", "1-on-1 Guidance"] }, ]} title="Membership Plans" description="Select the level that best matches your professional journey." @@ -239,59 +110,15 @@ export default function LandingPage() {