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 (
{/* Navigation */} {/* Hero Section */}
{/* 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 */}
{/* About Section */}

Why I Stand Out

Unique Blend

Academic excellence, technological fluency, creative innovation in robotics and software, leadership through service, and athletic resilience.

Team Player

I thrive in team environments, whether coaching classmates, collaborating in science competitions, or building apps with peers.

Self-Driven

Consistently pursuing excellence—from earning honors and awards to shipping production-level apps and standing tall on the podium.

{/* Academic Section */}

🏆 Academic & STEM Highlights

UIL Science 1st Place

Showcased analytical rigor and creative problem-solving in a highly competitive academic environment.

Science Olympiad

Regular participant developing strong teamwork, precise experimentation, and rapid on-your-feet thinking.

Gifted and Talented Program

Advanced coursework that cultivated deeper critical thinking and an enriched love for learning.

Honor Roll

Full schedule of honors classes, consistently challenging myself to excel in every subject.

{/* Tech Section */}

⚙️ Tech, Innovation & Projects

Sunday School Attendance App

In Production

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.

{["React Native", "UI/UX Design", "Backend Integration"].map( (tech) => ( {tech} ) )}

Competitive Robotics

Award Winner

Core contributor on an RC Robotics Team, earned the "Plethora of Features" award by integrating remarkable range of capabilities—demonstrating versatility and innovation.

Programming Skills

{[ "Python", "React", "React Native", "Tailwind CSS", "Javascript", "APIs", "AI Integration", "UI/UX Design", ].map((skill) => ( {skill} ))}

Striker Competition

Modeled an operationg room for a Striker Competition

{/* Leadership Section */}

📚 Leadership, Service & School

NJHS Inductee

National Junior Honor Society recognition for academic excellence, leadership, and community commitment.

Tutoring

Volunteered regularly to tutor peers in math, science, and programming—fostering academic growth in others.

Fabulous Falcon Award

Honored for outstanding school spirit, positive contributions to campus life, and consistent character.

{/* Athletics Section */}

🏊‍♂️🏸 Athletics & Competitions

🏊‍♂️

Swimming Competitions

Competed across multiple events, honing discipline, mental toughness, and an enduring competitive spirit.

🏸

Badminton Competitions

Sharpened hand-eye coordination, strategic thinking, and graceful sportsmanship on the court.

{/* Entrepreneurship Section */}

💡 Entrepreneurship & Drive

Entrepreneurial Spirit

Always on the lookout for new opportunities—whether launching small ventures, leading peer projects, or exploring tech startups.

Growth Mindset

I love to learn—whether it be a new programming framework, exploring scientific research, or mastering a new athletic skill.

{/* Footer */}
); }; export default App;