Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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.js

17 directories, 72 files
```