A modern, responsive personal portfolio website built with Next.js, TypeScript, and Tailwind CSS.
├── frontend/ # Frontend application
│ ├── src/
│ │ ├── components/ # Reusable React components
│ │ ├── pages/ # Next.js pages
│ │ ├── styles/ # Global styles
│ │ └── utils/ # Utility functions
│ ├── public/ # Static assets
│ └── ...
└── README.md
- 🌓 Dark/Light theme support
- 📱 Responsive design
- 🎨 Modern UI with Tailwind CSS
- 🔍 SEO friendly
- 📝 Easy to customize and extend
- 🚀 Fast performance with Next.js
- Clone the repository
git clone <repository-url>- Install dependencies
cd frontend
npm install- Run the development server
npm run dev- Open http://localhost:3000 in your browser
- Update
frontend/src/components/layout/Navbar.tsxto change navigation items - Modify theme colors in
frontend/tailwind.config.ts - Add new pages in
frontend/src/pages/ - Customize components in
frontend/src/components/