├── .gitignore ├── backend ├── app.js ├── controller │ ├── messageController.js │ ├── projectController.js │ ├── skillController.js │ ├── softwareApplicationController.js │ ├── timelineController.js │ └── userController.js ├── database │ └── connection.js ├── middlewares │ ├── auth.js │ ├── catchAsyncErrors.js │ └── error.js ├── models │ ├── messageSchema.js │ ├── projectSchema.js │ ├── skillSchema.js │ ├── softwareApplicationSchema.js │ ├── timelineSchema.js │ └── userSchema.js ├── package-lock.json ├── package.json ├── routes │ ├── messageRouter.js │ ├── projectRouter.js │ ├── skillRouter.js │ ├── softwareApplicationRouter.js │ ├── timelineRouter.js │ └── userRouter.js ├── server.js └── utils │ ├── jwtToken.js │ └── sendEmail.js ├── dashboard ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── components.json ├── index.html ├── jsconfig.json ├── package-lock.json ├── package.json ├── postcss.config.js ├── public │ ├── forgot.png │ ├── login.png │ ├── me.jpg │ ├── reset.png │ └── vite.svg ├── src │ ├── App.css │ ├── App.jsx │ ├── components │ │ └── ui │ │ │ ├── badge.jsx │ │ │ ├── breadcrumb.jsx │ │ │ ├── button.jsx │ │ │ ├── card.jsx │ │ │ ├── dropdown-menu.jsx │ │ │ ├── form.jsx │ │ │ ├── input.jsx │ │ │ ├── label.jsx │ │ │ ├── pagination.jsx │ │ │ ├── progress.jsx │ │ │ ├── select.jsx │ │ │ ├── separator.jsx │ │ │ ├── sheet.jsx │ │ │ ├── slider.jsx │ │ │ ├── table.jsx │ │ │ ├── tabs.jsx │ │ │ ├── textarea.jsx │ │ │ └── tooltip.jsx │ ├── index.css │ ├── lib │ │ └── utils.js │ ├── main.jsx │ ├── pages │ │ ├── ForgotPassword.jsx │ │ ├── HomePage.jsx │ │ ├── Login.jsx │ │ ├── ManageProjects.jsx │ │ ├── ManageSkills.jsx │ │ ├── ManageTimeline.jsx │ │ ├── ResetPassword.jsx │ │ ├── UpdateProject.jsx │ │ ├── ViewProject.jsx │ │ └── sub-components │ │ │ ├── Account.jsx │ │ │ ├── AddProject.jsx │ │ │ ├── AddSkill.jsx │ │ │ ├── AddSoftwareApplications.jsx │ │ │ ├── AddTimeline.jsx │ │ │ ├── Dashboard.jsx │ │ │ ├── Messages.jsx │ │ │ ├── Profile.jsx │ │ │ ├── SpecialLoadingButton.jsx │ │ │ ├── UpdatePassword.jsx │ │ │ └── UpdateProfile.jsx │ └── store │ │ ├── slices │ │ ├── forgotResetPasswordSlice.js │ │ ├── messageSlice.js │ │ ├── projectSlice.js │ │ ├── skillSlice.js │ │ ├── softwareApplicationSlice.js │ │ ├── timelineSlice.js │ │ └── userSlice.js │ │ └── store.js ├── tailwind.config.js └── vite.config.js └── portfolio ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── components.json ├── index.html ├── jsconfig.json ├── package-lock.json ├── package.json ├── postcss.config.js ├── public ├── me.jpg ├── studio.png └── vite.svg ├── src ├── App.css ├── App.jsx ├── components │ ├── mode-toggle.jsx │ ├── theme-provider.jsx │ └── ui │ │ ├── button.jsx │ │ ├── card.jsx │ │ ├── dropdown-menu.jsx │ │ ├── form.jsx │ │ ├── input.jsx │ │ ├── label.jsx │ │ ├── toast.jsx │ │ ├── toaster.jsx │ │ └── use-toast.js ├── index.css ├── lib │ └── utils.js ├── main.jsx └── pages │ ├── Home.jsx │ ├── ProjectView.jsx │ └── miniComponents │ ├── About.jsx │ ├── Contact.jsx │ ├── Footer.jsx │ ├── Hero.jsx │ ├── MyApps.jsx │ ├── Portfolio.jsx │ ├── Skills.jsx │ └── Timeline.jsx ├── tailwind.config.js └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/.gitignore -------------------------------------------------------------------------------- /backend/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/backend/app.js -------------------------------------------------------------------------------- /backend/controller/messageController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/backend/controller/messageController.js -------------------------------------------------------------------------------- /backend/controller/projectController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/backend/controller/projectController.js -------------------------------------------------------------------------------- /backend/controller/skillController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/backend/controller/skillController.js -------------------------------------------------------------------------------- /backend/controller/softwareApplicationController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/backend/controller/softwareApplicationController.js -------------------------------------------------------------------------------- /backend/controller/timelineController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/backend/controller/timelineController.js -------------------------------------------------------------------------------- /backend/controller/userController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/backend/controller/userController.js -------------------------------------------------------------------------------- /backend/database/connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/backend/database/connection.js -------------------------------------------------------------------------------- /backend/middlewares/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/backend/middlewares/auth.js -------------------------------------------------------------------------------- /backend/middlewares/catchAsyncErrors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/backend/middlewares/catchAsyncErrors.js -------------------------------------------------------------------------------- /backend/middlewares/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/backend/middlewares/error.js -------------------------------------------------------------------------------- /backend/models/messageSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/backend/models/messageSchema.js -------------------------------------------------------------------------------- /backend/models/projectSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/backend/models/projectSchema.js -------------------------------------------------------------------------------- /backend/models/skillSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/backend/models/skillSchema.js -------------------------------------------------------------------------------- /backend/models/softwareApplicationSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/backend/models/softwareApplicationSchema.js -------------------------------------------------------------------------------- /backend/models/timelineSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/backend/models/timelineSchema.js -------------------------------------------------------------------------------- /backend/models/userSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/backend/models/userSchema.js -------------------------------------------------------------------------------- /backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/backend/package-lock.json -------------------------------------------------------------------------------- /backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/backend/package.json -------------------------------------------------------------------------------- /backend/routes/messageRouter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/backend/routes/messageRouter.js -------------------------------------------------------------------------------- /backend/routes/projectRouter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/backend/routes/projectRouter.js -------------------------------------------------------------------------------- /backend/routes/skillRouter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/backend/routes/skillRouter.js -------------------------------------------------------------------------------- /backend/routes/softwareApplicationRouter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/backend/routes/softwareApplicationRouter.js -------------------------------------------------------------------------------- /backend/routes/timelineRouter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/backend/routes/timelineRouter.js -------------------------------------------------------------------------------- /backend/routes/userRouter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/backend/routes/userRouter.js -------------------------------------------------------------------------------- /backend/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/backend/server.js -------------------------------------------------------------------------------- /backend/utils/jwtToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/backend/utils/jwtToken.js -------------------------------------------------------------------------------- /backend/utils/sendEmail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/backend/utils/sendEmail.js -------------------------------------------------------------------------------- /dashboard/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/.eslintrc.cjs -------------------------------------------------------------------------------- /dashboard/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/.gitignore -------------------------------------------------------------------------------- /dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/README.md -------------------------------------------------------------------------------- /dashboard/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/components.json -------------------------------------------------------------------------------- /dashboard/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/index.html -------------------------------------------------------------------------------- /dashboard/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/jsconfig.json -------------------------------------------------------------------------------- /dashboard/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/package-lock.json -------------------------------------------------------------------------------- /dashboard/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/package.json -------------------------------------------------------------------------------- /dashboard/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/postcss.config.js -------------------------------------------------------------------------------- /dashboard/public/forgot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/public/forgot.png -------------------------------------------------------------------------------- /dashboard/public/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/public/login.png -------------------------------------------------------------------------------- /dashboard/public/me.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/public/me.jpg -------------------------------------------------------------------------------- /dashboard/public/reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/public/reset.png -------------------------------------------------------------------------------- /dashboard/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/public/vite.svg -------------------------------------------------------------------------------- /dashboard/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/src/App.css -------------------------------------------------------------------------------- /dashboard/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/src/App.jsx -------------------------------------------------------------------------------- /dashboard/src/components/ui/badge.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/src/components/ui/badge.jsx -------------------------------------------------------------------------------- /dashboard/src/components/ui/breadcrumb.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/src/components/ui/breadcrumb.jsx -------------------------------------------------------------------------------- /dashboard/src/components/ui/button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/src/components/ui/button.jsx -------------------------------------------------------------------------------- /dashboard/src/components/ui/card.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/src/components/ui/card.jsx -------------------------------------------------------------------------------- /dashboard/src/components/ui/dropdown-menu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/src/components/ui/dropdown-menu.jsx -------------------------------------------------------------------------------- /dashboard/src/components/ui/form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/src/components/ui/form.jsx -------------------------------------------------------------------------------- /dashboard/src/components/ui/input.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/src/components/ui/input.jsx -------------------------------------------------------------------------------- /dashboard/src/components/ui/label.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/src/components/ui/label.jsx -------------------------------------------------------------------------------- /dashboard/src/components/ui/pagination.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/src/components/ui/pagination.jsx -------------------------------------------------------------------------------- /dashboard/src/components/ui/progress.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/src/components/ui/progress.jsx -------------------------------------------------------------------------------- /dashboard/src/components/ui/select.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/src/components/ui/select.jsx -------------------------------------------------------------------------------- /dashboard/src/components/ui/separator.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/src/components/ui/separator.jsx -------------------------------------------------------------------------------- /dashboard/src/components/ui/sheet.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/src/components/ui/sheet.jsx -------------------------------------------------------------------------------- /dashboard/src/components/ui/slider.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/src/components/ui/slider.jsx -------------------------------------------------------------------------------- /dashboard/src/components/ui/table.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/src/components/ui/table.jsx -------------------------------------------------------------------------------- /dashboard/src/components/ui/tabs.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/src/components/ui/tabs.jsx -------------------------------------------------------------------------------- /dashboard/src/components/ui/textarea.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/src/components/ui/textarea.jsx -------------------------------------------------------------------------------- /dashboard/src/components/ui/tooltip.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/src/components/ui/tooltip.jsx -------------------------------------------------------------------------------- /dashboard/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/src/index.css -------------------------------------------------------------------------------- /dashboard/src/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/src/lib/utils.js -------------------------------------------------------------------------------- /dashboard/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/src/main.jsx -------------------------------------------------------------------------------- /dashboard/src/pages/ForgotPassword.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/src/pages/ForgotPassword.jsx -------------------------------------------------------------------------------- /dashboard/src/pages/HomePage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/src/pages/HomePage.jsx -------------------------------------------------------------------------------- /dashboard/src/pages/Login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/src/pages/Login.jsx -------------------------------------------------------------------------------- /dashboard/src/pages/ManageProjects.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/src/pages/ManageProjects.jsx -------------------------------------------------------------------------------- /dashboard/src/pages/ManageSkills.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/src/pages/ManageSkills.jsx -------------------------------------------------------------------------------- /dashboard/src/pages/ManageTimeline.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/src/pages/ManageTimeline.jsx -------------------------------------------------------------------------------- /dashboard/src/pages/ResetPassword.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/src/pages/ResetPassword.jsx -------------------------------------------------------------------------------- /dashboard/src/pages/UpdateProject.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/src/pages/UpdateProject.jsx -------------------------------------------------------------------------------- /dashboard/src/pages/ViewProject.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/src/pages/ViewProject.jsx -------------------------------------------------------------------------------- /dashboard/src/pages/sub-components/Account.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/src/pages/sub-components/Account.jsx -------------------------------------------------------------------------------- /dashboard/src/pages/sub-components/AddProject.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/src/pages/sub-components/AddProject.jsx -------------------------------------------------------------------------------- /dashboard/src/pages/sub-components/AddSkill.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/src/pages/sub-components/AddSkill.jsx -------------------------------------------------------------------------------- /dashboard/src/pages/sub-components/AddSoftwareApplications.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/src/pages/sub-components/AddSoftwareApplications.jsx -------------------------------------------------------------------------------- /dashboard/src/pages/sub-components/AddTimeline.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/src/pages/sub-components/AddTimeline.jsx -------------------------------------------------------------------------------- /dashboard/src/pages/sub-components/Dashboard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/src/pages/sub-components/Dashboard.jsx -------------------------------------------------------------------------------- /dashboard/src/pages/sub-components/Messages.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/src/pages/sub-components/Messages.jsx -------------------------------------------------------------------------------- /dashboard/src/pages/sub-components/Profile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/src/pages/sub-components/Profile.jsx -------------------------------------------------------------------------------- /dashboard/src/pages/sub-components/SpecialLoadingButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/src/pages/sub-components/SpecialLoadingButton.jsx -------------------------------------------------------------------------------- /dashboard/src/pages/sub-components/UpdatePassword.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/src/pages/sub-components/UpdatePassword.jsx -------------------------------------------------------------------------------- /dashboard/src/pages/sub-components/UpdateProfile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/src/pages/sub-components/UpdateProfile.jsx -------------------------------------------------------------------------------- /dashboard/src/store/slices/forgotResetPasswordSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/src/store/slices/forgotResetPasswordSlice.js -------------------------------------------------------------------------------- /dashboard/src/store/slices/messageSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/src/store/slices/messageSlice.js -------------------------------------------------------------------------------- /dashboard/src/store/slices/projectSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/src/store/slices/projectSlice.js -------------------------------------------------------------------------------- /dashboard/src/store/slices/skillSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/src/store/slices/skillSlice.js -------------------------------------------------------------------------------- /dashboard/src/store/slices/softwareApplicationSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/src/store/slices/softwareApplicationSlice.js -------------------------------------------------------------------------------- /dashboard/src/store/slices/timelineSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/src/store/slices/timelineSlice.js -------------------------------------------------------------------------------- /dashboard/src/store/slices/userSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/src/store/slices/userSlice.js -------------------------------------------------------------------------------- /dashboard/src/store/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/src/store/store.js -------------------------------------------------------------------------------- /dashboard/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/tailwind.config.js -------------------------------------------------------------------------------- /dashboard/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/dashboard/vite.config.js -------------------------------------------------------------------------------- /portfolio/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/portfolio/.eslintrc.cjs -------------------------------------------------------------------------------- /portfolio/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/portfolio/.gitignore -------------------------------------------------------------------------------- /portfolio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/portfolio/README.md -------------------------------------------------------------------------------- /portfolio/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/portfolio/components.json -------------------------------------------------------------------------------- /portfolio/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/portfolio/index.html -------------------------------------------------------------------------------- /portfolio/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/portfolio/jsconfig.json -------------------------------------------------------------------------------- /portfolio/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/portfolio/package-lock.json -------------------------------------------------------------------------------- /portfolio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/portfolio/package.json -------------------------------------------------------------------------------- /portfolio/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/portfolio/postcss.config.js -------------------------------------------------------------------------------- /portfolio/public/me.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/portfolio/public/me.jpg -------------------------------------------------------------------------------- /portfolio/public/studio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/portfolio/public/studio.png -------------------------------------------------------------------------------- /portfolio/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/portfolio/public/vite.svg -------------------------------------------------------------------------------- /portfolio/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/portfolio/src/App.css -------------------------------------------------------------------------------- /portfolio/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/portfolio/src/App.jsx -------------------------------------------------------------------------------- /portfolio/src/components/mode-toggle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/portfolio/src/components/mode-toggle.jsx -------------------------------------------------------------------------------- /portfolio/src/components/theme-provider.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/portfolio/src/components/theme-provider.jsx -------------------------------------------------------------------------------- /portfolio/src/components/ui/button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/portfolio/src/components/ui/button.jsx -------------------------------------------------------------------------------- /portfolio/src/components/ui/card.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/portfolio/src/components/ui/card.jsx -------------------------------------------------------------------------------- /portfolio/src/components/ui/dropdown-menu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/portfolio/src/components/ui/dropdown-menu.jsx -------------------------------------------------------------------------------- /portfolio/src/components/ui/form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/portfolio/src/components/ui/form.jsx -------------------------------------------------------------------------------- /portfolio/src/components/ui/input.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/portfolio/src/components/ui/input.jsx -------------------------------------------------------------------------------- /portfolio/src/components/ui/label.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/portfolio/src/components/ui/label.jsx -------------------------------------------------------------------------------- /portfolio/src/components/ui/toast.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/portfolio/src/components/ui/toast.jsx -------------------------------------------------------------------------------- /portfolio/src/components/ui/toaster.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/portfolio/src/components/ui/toaster.jsx -------------------------------------------------------------------------------- /portfolio/src/components/ui/use-toast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/portfolio/src/components/ui/use-toast.js -------------------------------------------------------------------------------- /portfolio/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/portfolio/src/index.css -------------------------------------------------------------------------------- /portfolio/src/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/portfolio/src/lib/utils.js -------------------------------------------------------------------------------- /portfolio/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/portfolio/src/main.jsx -------------------------------------------------------------------------------- /portfolio/src/pages/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/portfolio/src/pages/Home.jsx -------------------------------------------------------------------------------- /portfolio/src/pages/ProjectView.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/portfolio/src/pages/ProjectView.jsx -------------------------------------------------------------------------------- /portfolio/src/pages/miniComponents/About.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/portfolio/src/pages/miniComponents/About.jsx -------------------------------------------------------------------------------- /portfolio/src/pages/miniComponents/Contact.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/portfolio/src/pages/miniComponents/Contact.jsx -------------------------------------------------------------------------------- /portfolio/src/pages/miniComponents/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/portfolio/src/pages/miniComponents/Footer.jsx -------------------------------------------------------------------------------- /portfolio/src/pages/miniComponents/Hero.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/portfolio/src/pages/miniComponents/Hero.jsx -------------------------------------------------------------------------------- /portfolio/src/pages/miniComponents/MyApps.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/portfolio/src/pages/miniComponents/MyApps.jsx -------------------------------------------------------------------------------- /portfolio/src/pages/miniComponents/Portfolio.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/portfolio/src/pages/miniComponents/Portfolio.jsx -------------------------------------------------------------------------------- /portfolio/src/pages/miniComponents/Skills.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/portfolio/src/pages/miniComponents/Skills.jsx -------------------------------------------------------------------------------- /portfolio/src/pages/miniComponents/Timeline.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/portfolio/src/pages/miniComponents/Timeline.jsx -------------------------------------------------------------------------------- /portfolio/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/portfolio/tailwind.config.js -------------------------------------------------------------------------------- /portfolio/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshu911/MERN_STACK_PORTFOLIO_WITH_ADMIN_PANEL/HEAD/portfolio/vite.config.js --------------------------------------------------------------------------------