_____ _ __ _ _
| __ \ | | / _| | (_)
| |__) |__ _ __| |_| |_ ___ | |_ ___
| ___/ _ \| '__| __| _/ _ \| | |/ _ \
| | | (_) | | | |_| || (_) | | | (_) |
|_| \___/|_| \__|_| \___/|_|_|\___/
portfolio/
├── node_modules/
├── public/
├── src/
│ ├── assets/
│ │ ├── css/
│ │ │ ├── index.css
│ │ │ └── tomorrow.css
│ │ └── images/
│ ├── components/
│ │ ├── ui/
│ │ │ ├── Reusable Components/
│ │ │ │ ├── badge.jsx
│ │ │ │ ├── button.jsx
│ │ │ │ ├── card.jsx
│ │ │ │ ├── EducationLoader.jsx
│ │ │ │ ├── evervault-card.jsx
│ │ │ │ ├── flip-words.jsx
│ │ │ │ ├── icon-cloud.jsx
│ │ │ │ ├── meteors.jsx
│ │ │ │ ├── sparkles-text.jsx
│ │ │ │ └── tooltip.jsx
│ │ │ │
│ │ │ ├── Main Components/
│ │ │ │ ├── AnimatedGrid.jsx
│ │ │ │ ├── Contact.jsx
│ │ │ │ ├── Education.jsx
│ │ │ │ ├── enhanced-portfolio-card.jsx
│ │ │ │ ├── Experience.jsx
│ │ │ │ ├── global.jsx
│ │ │ │ ├── Header.jsx
│ │ │ │ ├── Hero.jsx
│ │ │ │ ├── Home.jsx
│ │ │ │ ├── PortfolioPage.jsx
│ │ │ │ ├── Projects.jsx
│ │ │ │ └── Skills.jsx
│ │ └── lib/
│ │ └── utils.js
│ ├── pages/
│ │ ├── About/
│ │ │ └── About.jsx
│ │ ├── Contact/
│ │ │ └── Contact.jsx
│ │ ├── Experience/
│ │ │ └── Experience.jsx
│ │ ├── Header/
│ │ │ └── Header.jsx
│ │ ├── Hero/
│ │ │ └── Hero.jsx
│ │ ├── Projects/
│ │ │ ├── Projects.jsx
│ │ │ └── testProjects.jsx
│ │ └── Skills/
│ │ └── Skills.jsx
│ ├── App.jsx
│ └── main.jsx
├── Configuration Files/
│ ├── .eslintrc.js
│ ├── .gitignore
│ ├── components.json
│ ├── index.html
│ ├── jsconfig.json
│ ├── package-lock.json
│ ├── package.json
│ ├── postcss.config.js
│ ├── README.md
│ ├── tailwind.config.js
│ ├── vercel.json
│ └── vite.config.js