Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/manjeetsingh-02/portfolio
Contains source code for My Portfolio Website
https://github.com/manjeetsingh-02/portfolio
css html js my-portfolio portfolio react-js tailwind-css web-development
Last synced: 18 days ago
JSON representation
Contains source code for My Portfolio Website
- Host: GitHub
- URL: https://github.com/manjeetsingh-02/portfolio
- Owner: ManjeetSingh-02
- Created: 2024-12-30T18:02:23.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2025-01-20T13:27:38.000Z (19 days ago)
- Last Synced: 2025-01-20T13:55:04.143Z (19 days ago)
- Topics: css, html, js, my-portfolio, portfolio, react-js, tailwind-css, web-development
- Language: JavaScript
- Homepage: https://manjeetsingh-02.github.io/portfolio/
- Size: 1.02 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Portfolio - Manjeet Singh
This git contains code for personal portfolio website.
## Table of Contents
- [Introduction](#introduction)
- [Pages](#pages)
- [Features](#features)
- [Tech Stack](#tech-stack)
- [Folder Structure](#folder-structure)## Introduction
This portfolio website is designed to showcase the projects and techstack. It includes sections for home, tech stack, projects, and a 404 not found page.
- [Visit Site](https://manjeetsingh.netlify.app/)
## Pages
- Home
- Tech Stack
- Projects## Features
- Responsive design
- Dark mode support## Tech Stack
- **Frontend**: `HTML` `Tailwind CSS` `JS` `React JS`
- **Routing**: `React Router DOM`
- **Build Tool**: `Vite`## Folder Structure
```
portfolio
├── eslint.config.js
├── index.html
├── package.json
├── package-lock.json
├── postcss.config.js
├── public
│ ├── favicon.ico
│ ├── manjeetsingh_resume.pdf
│ └── _redirect
├── README.md
├── src
│ ├── App.jsx
│ ├── assets
│ │ ├── icons
│ │ │ ├── cpp.svg
│ │ │ ├── css.svg
│ │ │ ├── darkmode.svg
│ │ │ ├── downarrow.svg
│ │ │ ├── expressjs.svg
│ │ │ ├── github.svg
│ │ │ ├── git.svg
│ │ │ ├── html.svg
│ │ │ ├── javascript.svg
│ │ │ ├── lightmode.svg
│ │ │ ├── linkedin.svg
│ │ │ ├── linux.svg
│ │ │ ├── mongodb.svg
│ │ │ ├── mysql.svg
│ │ │ ├── npm.svg
│ │ │ ├── reactjs.svg
│ │ │ ├── tailwindcss.svg
│ │ │ ├── ubuntu.svg
│ │ │ ├── vscode.svg
│ │ │ └── windows.svg
│ │ └── images
│ │ ├── digital_clock.png
│ │ ├── profile.png
│ │ └── todo_list.png
│ ├── components
│ │ ├── Footer
│ │ │ ├── Footer.jsx
│ │ │ ├── FTIContact.jsx
│ │ │ ├── FTIDev.jsx
│ │ │ └── FTInfo.jsx
│ │ ├── Home
│ │ │ ├── HMImg.jsx
│ │ │ ├── HMINSpan.jsx
│ │ │ └── HMSpan.jsx
│ │ ├── Navbar
│ │ │ ├── Navbar.jsx
│ │ │ ├── NVHeading.jsx
│ │ │ └── NVLink.jsx
│ │ ├── Projects
│ │ │ ├── PRInfo.jsx
│ │ │ ├── Project.jsx
│ │ │ └── PRPreview.jsx
│ │ └── TechStack
│ │ ├── TSDatabases.jsx
│ │ ├── TSDevTools.jsx
│ │ ├── TSDistros.jsx
│ │ ├── TSFrameworks.jsx
│ │ ├── TSIHeading.jsx
│ │ ├── TSItems.jsx
│ │ ├── TSLanguages.jsx
│ │ ├── TSLibraries.jsx
│ │ └── TSOS.jsx
│ ├── contexts
│ │ └── themeContext.js
│ ├── hooks
│ │ └── useTheme.jsx
│ ├── index.css
│ ├── libraries
│ │ └── constants.js
│ ├── main.jsx
│ ├── pages
│ │ ├── Home.jsx
│ │ ├── NotFound.jsx
│ │ ├── Projects.jsx
│ │ └── TechStack.jsx
│ └── utilities
│ ├── CustomDownloadButton.jsx
│ ├── CustomIconButton.jsx
│ ├── CustomNavigationButton.jsx
│ ├── CustomRedirectButton.jsx
│ └── ThemeIconButton.jsx
├── tailwind.config.js
├── vercel.json
└── vite.config.js17 directories, 72 files
```