A personal portfolio website built with React and Vite.
- React 18 - UI library
- Vite - Build tool and dev server
- Tailwind CSS - Utility-first CSS framework
- Lucide React - Icon library
- Node.js 18+
- npm or yarn
# Clone the repository
git clone https://github.com/yourusername/izinko.com.git
cd izinko.com
# Install dependencies
npm install
# Start development server
npm run devThe dev server will start at http://localhost:5173/
| Command | Description |
|---|---|
npm run dev |
Start development server |
npm run build |
Build for production |
npm run preview |
Preview production build |
npm run lint |
Run ESLint |
src/
├── components/ # React components
│ ├── Header.jsx
│ ├── Footer.jsx
│ ├── Skills.jsx
│ ├── Work.jsx
│ ├── Personal.jsx
│ ├── Modal.jsx
│ ├── WelcomeCard.jsx
│ └── ContactCard.jsx
├── utils/ # Utility functions and hooks
├── App.jsx # Main app component
├── main.jsx # Entry point
└── index.css # Global styles
MIT