import { ChevronDown, Trophy, Code, Users, Zap, Rocket } from "lucide-react"; interface HeroSectionProps { isDarkMode: boolean; scrollToSection: (sectionId: string) => void; textClasses: string; cardClasses: string; } const HeroSection = ({ isDarkMode, scrollToSection, textClasses, cardClasses, }: HeroSectionProps) => { return (
{/* Animated background particles */}
{[...Array(20)].map((_, i) => (
))}
Maaz's Avatar

Hi! I'm Maaz

A curious, ambitious, and multidisciplinary student passionate about science, technology, leadership, and athletics

{/* Floating Elements */}
); }; export default HeroSection;