import React, { useState, useEffect } from 'react'; import { Github, Linkedin, Mail, ExternalLink, Code2, User, Briefcase, Cpu, ChevronRight, Menu, X, FileText, Sparkles } from 'lucide-react'; /** * Professional Portfolio Component * Emphasis: Ultra-noticeable Glowing Buttons & Premium Interactions * Palette: Indigo-600, Slate-900, White */ const App = () => { const [isMenuOpen, setIsMenuOpen] = useState(false); const [scrolled, setScrolled] = useState(false); useEffect(() => { const handleScroll = () => { setScrolled(window.scrollY > 20); }; window.addEventListener('scroll', handleScroll); return () => window.removeEventListener('scroll', handleScroll); }, []); const navLinks = [ { name: 'About', href: '#about', icon: }, { name: 'Skills', href: '#skills', icon: }, { name: 'Projects', href: '#projects', icon: }, { name: 'Contact', href: '#contact', icon: }, ]; const skills = [ { category: "Frontend", items: ["React", "TypeScript", "Tailwind CSS", "Next.js"] }, { category: "Backend", items: ["Node.js", "Python", "PostgreSQL", "Supabase"] }, { category: "Design", items: ["Figma", "UI/UX", "Adobe Suite", "Prototyping"] }, ]; const projects = [ { title: "AI Productivity Suite", description: "Automating student workflows using LLMs to synthesize lecture notes and schedule tasks efficiently across platforms.", tags: ["React", "Node.js", "AI"], link: "#" }, { title: "FinTech Dashboard", description: "Real-time analytics for personal finance tracking with high-precision data visualization and automated categorization.", tags: ["TypeScript", "Next.js", "D3"], link: "#" }, { title: "Community Platform", description: "A collaborative workspace for open-source contributors to manage distributed sprints and coordinate documentation.", tags: ["PostgreSQL", "React", "Docker"], link: "#" } ]; return (
{/* Navigation */} {/* Hero Section */}
Available for 2025 Roles

Digital
Architect.

I build scalable web systems with a focus on minimalist aesthetics and robust engineering.

{/* EXPLORE WORK BUTTON - THE GLOWING CTA */} Explore Work
S
{/* About Section */}

The Philosophy

Complexity
made simple.

I believe that every line of code is an opportunity to solve a human problem. My process bridges the gap between technical constraints and user desires.

Currently specializing in full-stack development, I focus on creating systems that are performant, accessible, and delightful to interact with.

02+

Industry Roles

20+

Digital Products

{/* Skills Section */}

Technical
Arsenal

A constantly evolving stack built on modern standards and industry best practices.

{skills.map((skillGroup) => (

{skillGroup.category}

    {skillGroup.items.map(item => (
  • {item}
  • ))}
))}
{/* Projects Section */}

Work.

Highlighting the intersection of design and logic.

View Github
{projects.map((project, index) => (
{project.tags.map(tag => ( {tag} ))}

{project.title}

{project.description}

))}
{/* Contact Section */}

Let's build
Together.

I'm ready to bring my technical skills and creative eye to your next mission.

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