import { useState, useEffect } from "react"; import { ChevronDown, Trophy, Code, Users, Zap, Award, Rocket, Star, Sun, Moon, } from "lucide-react"; const App = () => { const [activeSection, setActiveSection] = useState("hero"); const [isVisible, setIsVisible] = useState({}); const [isDarkMode, setIsDarkMode] = useState(true); useEffect(() => { const observer = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { setIsVisible((prev) => ({ ...prev, [entry.target.id]: true })); setActiveSection(entry.target.id); } }); }, { threshold: 0.3 } ); document.querySelectorAll("section[id]").forEach((section) => { observer.observe(section); }); return () => observer.disconnect(); }, []); const scrollToSection = (sectionId: string) => { document.getElementById(sectionId)?.scrollIntoView({ behavior: "smooth" }); }; const toggleDarkMode = () => { setIsDarkMode(!isDarkMode); }; const themeClasses = isDarkMode ? "min-h-screen bg-gradient-to-br from-slate-900 via-purple-900 to-slate-900 text-white overflow-x-hidden transition-all duration-1000" : "min-h-screen bg-gradient-to-br from-blue-50 via-purple-50 to-pink-50 text-gray-900 overflow-x-hidden transition-all duration-1000"; const cardClasses = isDarkMode ? "bg-white/5 backdrop-blur-lg border-white/10" : "bg-white/90 backdrop-blur-lg border-gray-200/60 shadow-xl"; const navClasses = isDarkMode ? "bg-black/20 backdrop-blur-lg border-white/10" : "bg-white/80 backdrop-blur-lg border-gray-200/30"; const textClasses = isDarkMode ? "text-gray-300" : "text-gray-700"; return (
A curious, ambitious, and multidisciplinary student passionate about science, technology, leadership, and athletics
Academic excellence, technological fluency, creative innovation in robotics and software, leadership through service, and athletic resilience.
I thrive in team environments, whether coaching classmates, collaborating in science competitions, or building apps with peers.
Consistently pursuing excellence—from earning honors and awards to shipping production-level apps and standing tall on the podium.
Showcased analytical rigor and creative problem-solving in a highly competitive academic environment.
Regular participant developing strong teamwork, precise experimentation, and rapid on-your-feet thinking.
Advanced coursework that cultivated deeper critical thinking and an enriched love for learning.
Full schedule of honors classes, consistently challenging myself to excel in every subject.
Architecting and building a fully functional, community-oriented app, designed for a local community center. Handling everything from UI/UX design to back-end integration.
Core contributor on an RC Robotics Team, earned the "Plethora of Features" award by integrating remarkable range of capabilities—demonstrating versatility and innovation.
Modeled an operationg room for a Striker Competition
National Junior Honor Society recognition for academic excellence, leadership, and community commitment.
Volunteered regularly to tutor peers in math, science, and programming—fostering academic growth in others.
Honored for outstanding school spirit, positive contributions to campus life, and consistent character.
Competed across multiple events, honing discipline, mental toughness, and an enduring competitive spirit.
Sharpened hand-eye coordination, strategic thinking, and graceful sportsmanship on the court.
Always on the lookout for new opportunities—whether launching small ventures, leading peer projects, or exploring tech startups.
I love to learn—whether it be a new programming framework, exploring scientific research, or mastering a new athletic skill.