Welcome to my personal portfolio website repository! This modern, responsive portfolio is built with React, Vite, and Tailwind CSS, showcasing my technical expertise and projects.
- 💻 Modern Stack: Built with React, Vite, and Tailwind CSS
- 📱 Responsive Design: Seamlessly adapts to all device sizes
- ⚡ Lightning Fast: Optimized performance with Vite
- ☁️ Cloud Hosted: Deployed on AWS for reliability
- 🎨 Clean UI/UX: Modern and intuitive interface
- 📂 Project Showcase: Highlights technical achievements
- Clone the repository
git clone https://github.com/Chathupachamika/PortFolio.git cd PortFolio - Install dependencies
npm install
- Start development server
npm run dev
Experience the portfolio live: ZONY Portfolio
- React: UI component library
- Vite: Next-generation frontend tooling
- Tailwind CSS: Utility-first CSS framework
- AWS: Cloud hosting platform
- S3: Static website hosting
- CloudFront: Content delivery network (optional)
PortFolio/
├── src/
│ ├── components/ # Reusable UI components
│ ├── assets/ # Images and static files
│ ├── pages/ # Main page components
│ ├── styles/ # Global styles and Tailwind config
│ └── App.jsx # Root component
├── public/ # Public assets
├── index.html # Entry HTML file
├── vite.config.js # Vite configuration
└── package.json # Project dependencies
# React + TypeScript + Vite
This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
Currently, two official plugins are available:
- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh
- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh
## Expanding the ESLint configuration
If you are developing a production application, we recommend updating the configuration to enable type-aware lint rules:
```js
export default tseslint.config({
extends: [
// Remove ...tseslint.configs.recommended and replace with this
...tseslint.configs.recommendedTypeChecked,
// Alternatively, use this for stricter rules
...tseslint.configs.strictTypeChecked,
// Optionally, add this for stylistic rules
...tseslint.configs.stylisticTypeChecked,
],
languageOptions: {
// other options...
parserOptions: {
project: ['./tsconfig.node.json', './tsconfig.app.json'],
tsconfigRootDir: import.meta.dirname,
},
},
})
- Start development server
npm run dev
- Build for production
npm run build
- Preview production build
npm run preview
- Mobile-first approach
- Tablet optimized layouts
- Desktop enhanced features
- Cross-browser compatibility
-
Tailwind Configuration
- Edit
tailwind.config.jsfor theme customization - Modify color schemes, fonts, and spacing
- Edit
-
Content Management
- Update project data in
/src/data - Modify component content directly
- Update project data in
This project is open source and available under the MIT License.
- Portfolio: ZONY Portfolio
- GitHub: @Chathupachamika
Contributions, issues, and feature requests are welcome! Feel free to check the issues page.
- Thanks to the React, Vite, and Tailwind CSS communities
- Special thanks to all contributors and supporters
Made with ❤️ by the Chathupa Chamika You can also install eslint-plugin-react-x and eslint-plugin-react-dom for React-specific lint rules:
// eslint.config.js
import reactX from 'eslint-plugin-react-x'
import reactDom from 'eslint-plugin-react-dom'
export default tseslint.config({
plugins: {
// Add the react-x and react-dom plugins
'react-x': reactX,
'react-dom': reactDom,
},
rules: {
// other rules...
// Enable its recommended typescript rules
...reactX.configs['recommended-typescript'].rules,
...reactDom.configs.recommended.rules,
},
})