-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit ecb1e79
Showing
31 changed files
with
8,348 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
MIT License | ||
|
||
Copyright (c) 2024 Debojit Mitra | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
# 🌌 Space-Themed Portfolio | ||
|
||
A modern, responsive portfolio website built with React and styled with Tailwind CSS, featuring a captivating space theme and smooth animations. | ||
|
||
## ✨ Demo | ||
|
||
[Live Demo](https://blank-for-time-being) - Coming Soon! | ||
|
||
## 🚀 Features | ||
|
||
- 🌓 Dark/Light mode toggle with smooth transitions | ||
- 🎨 Beautiful space-themed design with animated stars and nebulas | ||
- 📱 Fully responsive layout for all devices | ||
- ⚡ Smooth scrolling and page transitions | ||
- 🎭 Dynamic project filtering system | ||
- 🔄 Interactive UI components with Framer Motion animations | ||
- 💌 Functional contact form | ||
- 🎯 SEO optimized | ||
|
||
## 🛠️ Built With | ||
|
||
- ⚛️ React - Frontend framework | ||
- 🎨 Tailwind CSS - Styling | ||
- 🎬 Framer Motion - Animations | ||
- 📱 React Router - Navigation | ||
- 🌙 Context API - Theme management | ||
- 🔧 Vite - Build tool | ||
|
||
## 🏗️ Project Structure | ||
|
||
``` | ||
portfolio/ | ||
├── src/ | ||
│ ├── components/ | ||
│ │ ├── layout/ | ||
│ │ ├── sections/ | ||
│ │ └── ui/ | ||
│ ├── context/ | ||
│ ├── pages/ | ||
│ └── utils/ | ||
├── public/ | ||
└── ...config files | ||
``` | ||
|
||
## 🚀 Getting Started | ||
|
||
1. **Clone the repository** | ||
```bash | ||
git clone https://github.com/Debojit-mitra/Debojit_Mitra_Portfolio.git | ||
``` | ||
|
||
2. **Install dependencies** | ||
```bash | ||
cd Debojit_Mitra_Portfolio | ||
npm install | ||
``` | ||
|
||
3. **Start the development server** | ||
```bash | ||
npm run dev | ||
``` | ||
|
||
4. **Build for production** | ||
```bash | ||
npm run build | ||
``` | ||
|
||
## 📱 Key Components | ||
|
||
- 🏠 **Hero Section** - Eye-catching introduction with animated elements | ||
- 👤 **About Section** - Professional background and skills showcase | ||
- 🎯 **Projects Section** - Filterable portfolio of work | ||
- 📬 **Contact Section** - Easy-to-use contact form | ||
- ⭐ **Star Background** - Dynamic animated background with stars and nebulas | ||
|
||
## 🔧 Customization | ||
|
||
1. **Theme Colors**: Edit `tailwind.config.js` to modify the color scheme | ||
2. **Content**: Update component files in `src/components/sections/` to modify content | ||
3. **Projects**: Modify the projects array in `src/components/sections/Projects.jsx` | ||
4. **Animations**: Adjust Framer Motion variants in individual components | ||
|
||
## 🤝 Contributing | ||
|
||
Contributions, issues, and feature requests are welcome! Feel free to check the [issues page](https://github.com/yourusername/portfolio/issues). | ||
|
||
## 📄 License | ||
|
||
This project is [MIT](./LICENSE.md) licensed. | ||
|
||
## 👨💻 Author | ||
|
||
**Debojit Mitra** | ||
- 📧 Email: debojit16mitra@gmail.com | ||
- 🌐 LinkedIn: [Debojit Mitra](https://www.linkedin.com/in/debojitmitra-one6) | ||
- 🐱 GitHub: [@Debojit-mitra](https://github.com/Debojit-mitra) | ||
- 📸 Instagram: [@its_me_debojit](https://www.instagram.com/its_me_debojit) | ||
|
||
--- | ||
|
||
⭐ Star this repo if you find it helpful! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
import js from '@eslint/js' | ||
import globals from 'globals' | ||
import react from 'eslint-plugin-react' | ||
import reactHooks from 'eslint-plugin-react-hooks' | ||
import reactRefresh from 'eslint-plugin-react-refresh' | ||
|
||
export default [ | ||
{ ignores: ['dist'] }, | ||
{ | ||
files: ['**/*.{js,jsx}'], | ||
languageOptions: { | ||
ecmaVersion: 2020, | ||
globals: globals.browser, | ||
parserOptions: { | ||
ecmaVersion: 'latest', | ||
ecmaFeatures: { jsx: true }, | ||
sourceType: 'module', | ||
}, | ||
}, | ||
settings: { react: { version: '18.3' } }, | ||
plugins: { | ||
react, | ||
'react-hooks': reactHooks, | ||
'react-refresh': reactRefresh, | ||
}, | ||
rules: { | ||
...js.configs.recommended.rules, | ||
...react.configs.recommended.rules, | ||
...react.configs['jsx-runtime'].rules, | ||
...reactHooks.configs.recommended.rules, | ||
'react/jsx-no-target-blank': 'off', | ||
'react-refresh/only-export-components': [ | ||
'warn', | ||
{ allowConstantExport: true }, | ||
], | ||
}, | ||
}, | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<link rel="icon" type="image/x-icon" href="/favicon.ico" /> | ||
<meta | ||
name="viewport" | ||
content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover" | ||
/> | ||
|
||
<meta | ||
name="description" | ||
content="Hi there! Explore my creative universe. Where creativity and | ||
technology shape impactful solutions." | ||
/> | ||
|
||
<!-- Optional but recommended meta tags --> | ||
<meta name="author" content="Debojit Mitra" /> | ||
<meta | ||
name="keywords" | ||
content="Debojit's Portfolio, space themed Portfolio" | ||
/> | ||
<title>Debojit's Portfolio</title> | ||
</head> | ||
<body> | ||
<div id="root"></div> | ||
<script type="module" src="/src/main.jsx"></script> | ||
</body> | ||
</html> |
Oops, something went wrong.