import { Sparkles, Moon, Sun, CheckCircle2 } from "lucide-react"; import { motion } from "framer-motion"; import { Card, Header, Plan, PlanName, Badge, Description, Body, List, ListItem } from "@/components/pricing-card"; import { AnimatedSection, AnimatedContainer, AnimatedItem } from "@/components/ui/animated-section"; import { fadeInUp, scaleIn, staggerContainer, staggerItem } from "@/lib/animations"; const Levels = () => { const levels = [ { name: "Nova Level", subtitle: "Beginner", icon: Sparkles, color: "from-yellow-400 to-orange-500", description: "Entry-level members beginning their coding journey with foundational learning and skill development", badge: "Entry Level", features: [ "Attend weekly workshops and learning sessions", "Participate in beginner-friendly coding projects", "Engage in structured peer learning activities", "Complete assigned programming tasks and challenges", "Access to comprehensive club learning resources", "One-on-one mentorship from experienced senior members", "Official certificate of participation and achievement", "Exclusive networking opportunities and community events", ], }, { name: "Eclipse Level", subtitle: "Intermediate", icon: Moon, color: "from-purple-500 to-pink-600", description: "Intermediate members demonstrating proven technical skills and active community contribution", badge: "Intermediate Level", features: [ "Lead and coordinate small development project teams", "Provide mentorship and guidance to Nova level members", "Contribute to major club initiatives and strategic planning", "Organize and conduct specialized technical mini workshops", "Enjoy all Nova level benefits with enhanced privileges", "Access to exclusive leadership development opportunities", "Priority enrollment for advanced workshops and masterclasses", "Professional internship recommendations and career support", ], }, { name: "Zenith Level", subtitle: "Advanced", icon: Sun, color: "from-cyan-500 to-blue-600", description: "Unlock premium coding platforms like LeetCode and HackerRank, plus all Eclipse benefits and exclusive perks for advanced members", badge: "Advanced Level", features: [ "Drive strategic planning and high-level organizational decisions", "Oversee and manage major club projects and initiatives", "Represent the club at external events and conferences", "Guide overall club direction and long-term vision", "Receive all Eclipse level benefits with additional perks", "Wield executive decision-making power in club governance", "Access to direct industry connections and partnerships", "Premium letter of recommendation for career advancement", ], }, ]; return (

Membership Levels

Progress through our structured membership system designed to recognize growth and contribution

{levels.map((level, index) => { const Icon = level.icon; return (
{level.name}
{level.subtitle}
{level.badge}
{level.description}
{level.features.map((feature, i) => ( {feature} ))}
); })}
); }; export default Levels;