import React, { useState } from 'react'; import { Menu, X, Github, Linkedin, Mail, ExternalLink, Code, Briefcase, User } from 'lucide-react'; export default function Portfolio() { const [mobileMenuOpen, setMobileMenuOpen] = useState(false); const projects = [ { title: "E-Commerce Platform", description: "A full-stack e-commerce solution with payment integration and real-time inventory management.", tech: ["React", "Node.js", "MongoDB"], link: "#" }, { title: "Task Management App", description: "Collaborative task management tool with drag-and-drop functionality and team features.", tech: ["React", "Firebase", "Tailwind"], link: "#" }, { title: "Weather Dashboard", description: "Real-time weather application with forecasts, maps, and location-based alerts.", tech: ["JavaScript", "API", "CSS"], link: "#" } ]; const skills = [ "JavaScript", "React", "Node.js", "Python", "HTML/CSS", "MongoDB", "Git", "REST APIs", "Tailwind CSS", "TypeScript" ]; return (
{/* Navigation */} {/* Hero Section */}
👋

Hi, I'm Your Name

Full Stack Developer | Creative Problem Solver

Get In Touch View Work
{/* About Section */}

About Me

I'm a passionate developer with a love for creating beautiful and functional web applications. With several years of experience in modern web technologies, I specialize in building responsive, user-friendly interfaces and robust backend systems.

When I'm not coding, you can find me exploring new technologies, contributing to open source, or sharing knowledge with the developer community.

Quick Facts

  • 📍 Based in Your City
  • 💼 5+ Years Experience
  • 🎓 Computer Science Graduate
  • 🚀 10+ Projects Completed
{/* Skills Section */}

Skills

{skills.map((skill, index) => ( {skill} ))}
{/* Projects Section */}

Projects

{projects.map((project, index) => (

{project.title}

{project.description}

{project.tech.map((tech, i) => ( {tech} ))}
View Project
))}
{/* Contact Section */}

Let's Connect

I'm always open to new opportunities and collaborations

Send Me an Email
{/* Footer */}