├── .github ├── PULL_REQUEST_TEMPLATE.md ├── copilot-instructions.md └── workflows │ └── autoFormatCode.yml ├── .gitignore ├── .idea └── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LEARN.md ├── LICENSE ├── README.md ├── backend ├── .gitignore ├── .prettierrc ├── configs │ ├── EmailConfig.js │ └── dbConfig.js ├── controllers │ ├── adminControllers │ │ ├── adminForgotPassword.js │ │ ├── adminLogin.js │ │ ├── adminResetPassword.js │ │ ├── adminSignup.js │ │ ├── adminVerifyEmail.js │ │ └── manageReviews.js │ ├── authControllers │ │ ├── changeEmail.js │ │ ├── changeName.js │ │ ├── forgotPassword.js │ │ ├── getCurrentUser.js │ │ ├── login.js │ │ ├── resetPassword.js │ │ ├── signup.js │ │ └── verifyEmail.js │ ├── domainControllers │ │ └── addCustomDomain.js │ ├── feedbackControllers │ │ ├── feedback.js │ │ └── reviews.js │ └── urlControllers │ │ ├── category.js │ │ ├── deleteUrl.js │ │ ├── exportGeneratedUrls.js │ │ ├── generateCustomBackHalf.js │ │ ├── generateShortUrl.js │ │ ├── getHistory.js │ │ └── redirectToURL.js ├── extras │ ├── Constants.js │ └── passport.js ├── index.js ├── jobs │ └── customDomainJobs.js ├── middlewares │ ├── ValidatorErrorHandler.js │ ├── authMiddleware.js │ └── isAdmin.js ├── models │ ├── AdminModel.js │ ├── CustomDomainsModel.js │ ├── Feedback.js │ ├── LinkInBioPageModel.js │ ├── Tokenmodel.js │ ├── UrlModel.js │ └── UserModel.js ├── nodemon.json ├── package.json ├── routes │ ├── admin.route.js │ ├── adminAuth.route.js │ ├── domain.route.js │ ├── url.route.js │ └── userAuth.route.js ├── swagger.yml ├── test │ ├── mainTest.js │ └── urlController.test.js ├── utils │ ├── dns.js │ ├── helperfunc.js │ └── mailSend.js ├── validators │ ├── authValidators.js │ ├── feedbackValidator.js │ └── urlValidator.js └── views │ ├── reset_password_email_template.ejs │ └── welcome_email_template.ejs ├── chrome-extension ├── extension.html ├── history.html ├── history.js ├── icon.png ├── logo.png ├── manifest.json └── script.js ├── designs ├── User-Profile-Page │ ├── Desktop - User Page - Favorites.png │ ├── Desktop - User Page - Links.png │ ├── Desktop - User Page - Profile edit Settings.png │ ├── Desktop - User Page - Profile edit Settings_2.png │ ├── FigmaLink.txt │ ├── Mobile - User Page - Favourites.png │ ├── Mobile - User Page - Links.png │ └── Mobile - User Page - Profile Edit.png ├── profile-finder-page │ ├── desktop │ │ ├── desktop 1 (no description).pdf │ │ ├── desktop 1 (no description).png │ │ ├── desktop 1.pdf │ │ ├── desktop 1.png │ │ ├── desktop 2 (no description).pdf │ │ ├── desktop 2 (no description).png │ │ ├── desktop 2.pdf │ │ └── desktop 2.png │ └── mobile │ │ ├── mobile 1 (no description).pdf │ │ ├── mobile 1 (no description).png │ │ ├── mobile 1.pdf │ │ ├── mobile 1.png │ │ ├── mobile 2 (no description).pdf │ │ ├── mobile 2 (no description).png │ │ ├── mobile 2.pdf │ │ └── mobile 2.png └── public-profile-page │ ├── desktop 1.pdf │ ├── desktop │ ├── desktop 1.pdf │ └── desktop2.pdf │ ├── desktop2.pdf │ ├── mobile │ ├── mobile1.pdf │ ├── mobile1.png │ ├── mobile2.pdf │ └── mobile2.png │ ├── mobile1.pdf │ ├── mobile1.png │ ├── mobile2.pdf │ └── mobile2.png ├── frontend ├── .eslintrc.json ├── .gitignore ├── .prettierrc ├── README.md ├── index.html ├── package.json ├── public │ ├── _redirects │ ├── favicon.ico │ ├── logo.png │ └── manifest.json ├── src │ ├── App.css │ ├── App.jsx │ ├── assets │ │ ├── cont1.json │ │ └── images │ │ │ └── feedback.png │ ├── components │ │ ├── About.jsx │ │ ├── AxiosFetch.jsx │ │ ├── Contributers.css │ │ ├── Contributers.jsx │ │ ├── Contributors.css │ │ ├── Contributors.jsx │ │ ├── ExportToExcel.jsx │ │ ├── FeedbackForm.css │ │ ├── FeedbackForm.jsx │ │ ├── Footer.css │ │ ├── Footer.jsx │ │ ├── ForgotPassword.jsx │ │ ├── History.jsx │ │ ├── HistoryCard.jsx │ │ ├── Home.jsx │ │ ├── LandingPage │ │ │ ├── Hero.jsx │ │ │ ├── HomePage.jsx │ │ │ ├── Images │ │ │ │ ├── ShortenDesktop.svg │ │ │ │ ├── ShortenMobile.svg │ │ │ │ ├── desktop.svg │ │ │ │ ├── facebook.svg │ │ │ │ ├── img.svg │ │ │ │ ├── instagram.svg │ │ │ │ ├── mobile.svg │ │ │ │ ├── pinterest.svg │ │ │ │ ├── twitter.svg │ │ │ │ └── working_img.svg │ │ │ ├── LandingPage.css │ │ │ ├── LandingPage.jsx │ │ │ ├── appTheme.js │ │ │ ├── footer_segment │ │ │ │ ├── BoostBox.jsx │ │ │ │ ├── Footer.jsx │ │ │ │ ├── FooterLink.jsx │ │ │ │ ├── FooterLinkList.jsx │ │ │ │ └── FooterSegment.jsx │ │ │ └── form │ │ │ │ ├── BackHalfForm.jsx │ │ │ │ ├── LinkForm.jsx │ │ │ │ ├── LinkList.jsx │ │ │ │ ├── LinkParent.jsx │ │ │ │ ├── Schema.jsx │ │ │ │ └── SingleOutput.jsx │ │ ├── Linkinbio.jsx │ │ ├── Login.jsx │ │ ├── Logout.jsx │ │ ├── Navbar.jsx │ │ ├── Pagination.jsx │ │ ├── ProfileForm.jsx │ │ ├── ProfilePage.jsx │ │ ├── ResetPassword.jsx │ │ ├── Sharepage.css │ │ ├── Sharepage.jsx │ │ ├── Signup.jsx │ │ └── linkinbio.css │ ├── context │ │ └── UserContext.js │ └── index.jsx └── vite.config.js ├── netlify.toml └── package.json /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/workflows/autoFormatCode.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/.github/workflows/autoFormatCode.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LEARN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/LEARN.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/README.md -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/.gitignore -------------------------------------------------------------------------------- /backend/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/.prettierrc -------------------------------------------------------------------------------- /backend/configs/EmailConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/configs/EmailConfig.js -------------------------------------------------------------------------------- /backend/configs/dbConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/configs/dbConfig.js -------------------------------------------------------------------------------- /backend/controllers/adminControllers/adminForgotPassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/controllers/adminControllers/adminForgotPassword.js -------------------------------------------------------------------------------- /backend/controllers/adminControllers/adminLogin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/controllers/adminControllers/adminLogin.js -------------------------------------------------------------------------------- /backend/controllers/adminControllers/adminResetPassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/controllers/adminControllers/adminResetPassword.js -------------------------------------------------------------------------------- /backend/controllers/adminControllers/adminSignup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/controllers/adminControllers/adminSignup.js -------------------------------------------------------------------------------- /backend/controllers/adminControllers/adminVerifyEmail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/controllers/adminControllers/adminVerifyEmail.js -------------------------------------------------------------------------------- /backend/controllers/adminControllers/manageReviews.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/controllers/adminControllers/manageReviews.js -------------------------------------------------------------------------------- /backend/controllers/authControllers/changeEmail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/controllers/authControllers/changeEmail.js -------------------------------------------------------------------------------- /backend/controllers/authControllers/changeName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/controllers/authControllers/changeName.js -------------------------------------------------------------------------------- /backend/controllers/authControllers/forgotPassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/controllers/authControllers/forgotPassword.js -------------------------------------------------------------------------------- /backend/controllers/authControllers/getCurrentUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/controllers/authControllers/getCurrentUser.js -------------------------------------------------------------------------------- /backend/controllers/authControllers/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/controllers/authControllers/login.js -------------------------------------------------------------------------------- /backend/controllers/authControllers/resetPassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/controllers/authControllers/resetPassword.js -------------------------------------------------------------------------------- /backend/controllers/authControllers/signup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/controllers/authControllers/signup.js -------------------------------------------------------------------------------- /backend/controllers/authControllers/verifyEmail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/controllers/authControllers/verifyEmail.js -------------------------------------------------------------------------------- /backend/controllers/domainControllers/addCustomDomain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/controllers/domainControllers/addCustomDomain.js -------------------------------------------------------------------------------- /backend/controllers/feedbackControllers/feedback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/controllers/feedbackControllers/feedback.js -------------------------------------------------------------------------------- /backend/controllers/feedbackControllers/reviews.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/controllers/feedbackControllers/reviews.js -------------------------------------------------------------------------------- /backend/controllers/urlControllers/category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/controllers/urlControllers/category.js -------------------------------------------------------------------------------- /backend/controllers/urlControllers/deleteUrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/controllers/urlControllers/deleteUrl.js -------------------------------------------------------------------------------- /backend/controllers/urlControllers/exportGeneratedUrls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/controllers/urlControllers/exportGeneratedUrls.js -------------------------------------------------------------------------------- /backend/controllers/urlControllers/generateCustomBackHalf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/controllers/urlControllers/generateCustomBackHalf.js -------------------------------------------------------------------------------- /backend/controllers/urlControllers/generateShortUrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/controllers/urlControllers/generateShortUrl.js -------------------------------------------------------------------------------- /backend/controllers/urlControllers/getHistory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/controllers/urlControllers/getHistory.js -------------------------------------------------------------------------------- /backend/controllers/urlControllers/redirectToURL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/controllers/urlControllers/redirectToURL.js -------------------------------------------------------------------------------- /backend/extras/Constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/extras/Constants.js -------------------------------------------------------------------------------- /backend/extras/passport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/extras/passport.js -------------------------------------------------------------------------------- /backend/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/index.js -------------------------------------------------------------------------------- /backend/jobs/customDomainJobs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/jobs/customDomainJobs.js -------------------------------------------------------------------------------- /backend/middlewares/ValidatorErrorHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/middlewares/ValidatorErrorHandler.js -------------------------------------------------------------------------------- /backend/middlewares/authMiddleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/middlewares/authMiddleware.js -------------------------------------------------------------------------------- /backend/middlewares/isAdmin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/middlewares/isAdmin.js -------------------------------------------------------------------------------- /backend/models/AdminModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/models/AdminModel.js -------------------------------------------------------------------------------- /backend/models/CustomDomainsModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/models/CustomDomainsModel.js -------------------------------------------------------------------------------- /backend/models/Feedback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/models/Feedback.js -------------------------------------------------------------------------------- /backend/models/LinkInBioPageModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/models/LinkInBioPageModel.js -------------------------------------------------------------------------------- /backend/models/Tokenmodel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/models/Tokenmodel.js -------------------------------------------------------------------------------- /backend/models/UrlModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/models/UrlModel.js -------------------------------------------------------------------------------- /backend/models/UserModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/models/UserModel.js -------------------------------------------------------------------------------- /backend/nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/nodemon.json -------------------------------------------------------------------------------- /backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/package.json -------------------------------------------------------------------------------- /backend/routes/admin.route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/routes/admin.route.js -------------------------------------------------------------------------------- /backend/routes/adminAuth.route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/routes/adminAuth.route.js -------------------------------------------------------------------------------- /backend/routes/domain.route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/routes/domain.route.js -------------------------------------------------------------------------------- /backend/routes/url.route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/routes/url.route.js -------------------------------------------------------------------------------- /backend/routes/userAuth.route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/routes/userAuth.route.js -------------------------------------------------------------------------------- /backend/swagger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/swagger.yml -------------------------------------------------------------------------------- /backend/test/mainTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/test/mainTest.js -------------------------------------------------------------------------------- /backend/test/urlController.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/test/urlController.test.js -------------------------------------------------------------------------------- /backend/utils/dns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/utils/dns.js -------------------------------------------------------------------------------- /backend/utils/helperfunc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/utils/helperfunc.js -------------------------------------------------------------------------------- /backend/utils/mailSend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/utils/mailSend.js -------------------------------------------------------------------------------- /backend/validators/authValidators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/validators/authValidators.js -------------------------------------------------------------------------------- /backend/validators/feedbackValidator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/validators/feedbackValidator.js -------------------------------------------------------------------------------- /backend/validators/urlValidator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/validators/urlValidator.js -------------------------------------------------------------------------------- /backend/views/reset_password_email_template.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/views/reset_password_email_template.ejs -------------------------------------------------------------------------------- /backend/views/welcome_email_template.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/backend/views/welcome_email_template.ejs -------------------------------------------------------------------------------- /chrome-extension/extension.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/chrome-extension/extension.html -------------------------------------------------------------------------------- /chrome-extension/history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/chrome-extension/history.html -------------------------------------------------------------------------------- /chrome-extension/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/chrome-extension/history.js -------------------------------------------------------------------------------- /chrome-extension/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/chrome-extension/icon.png -------------------------------------------------------------------------------- /chrome-extension/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/chrome-extension/logo.png -------------------------------------------------------------------------------- /chrome-extension/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/chrome-extension/manifest.json -------------------------------------------------------------------------------- /chrome-extension/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/chrome-extension/script.js -------------------------------------------------------------------------------- /designs/User-Profile-Page/Desktop - User Page - Favorites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/designs/User-Profile-Page/Desktop - User Page - Favorites.png -------------------------------------------------------------------------------- /designs/User-Profile-Page/Desktop - User Page - Links.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/designs/User-Profile-Page/Desktop - User Page - Links.png -------------------------------------------------------------------------------- /designs/User-Profile-Page/Desktop - User Page - Profile edit Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/designs/User-Profile-Page/Desktop - User Page - Profile edit Settings.png -------------------------------------------------------------------------------- /designs/User-Profile-Page/Desktop - User Page - Profile edit Settings_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/designs/User-Profile-Page/Desktop - User Page - Profile edit Settings_2.png -------------------------------------------------------------------------------- /designs/User-Profile-Page/FigmaLink.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/designs/User-Profile-Page/FigmaLink.txt -------------------------------------------------------------------------------- /designs/User-Profile-Page/Mobile - User Page - Favourites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/designs/User-Profile-Page/Mobile - User Page - Favourites.png -------------------------------------------------------------------------------- /designs/User-Profile-Page/Mobile - User Page - Links.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/designs/User-Profile-Page/Mobile - User Page - Links.png -------------------------------------------------------------------------------- /designs/User-Profile-Page/Mobile - User Page - Profile Edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/designs/User-Profile-Page/Mobile - User Page - Profile Edit.png -------------------------------------------------------------------------------- /designs/profile-finder-page/desktop/desktop 1 (no description).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/designs/profile-finder-page/desktop/desktop 1 (no description).pdf -------------------------------------------------------------------------------- /designs/profile-finder-page/desktop/desktop 1 (no description).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/designs/profile-finder-page/desktop/desktop 1 (no description).png -------------------------------------------------------------------------------- /designs/profile-finder-page/desktop/desktop 1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/designs/profile-finder-page/desktop/desktop 1.pdf -------------------------------------------------------------------------------- /designs/profile-finder-page/desktop/desktop 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/designs/profile-finder-page/desktop/desktop 1.png -------------------------------------------------------------------------------- /designs/profile-finder-page/desktop/desktop 2 (no description).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/designs/profile-finder-page/desktop/desktop 2 (no description).pdf -------------------------------------------------------------------------------- /designs/profile-finder-page/desktop/desktop 2 (no description).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/designs/profile-finder-page/desktop/desktop 2 (no description).png -------------------------------------------------------------------------------- /designs/profile-finder-page/desktop/desktop 2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/designs/profile-finder-page/desktop/desktop 2.pdf -------------------------------------------------------------------------------- /designs/profile-finder-page/desktop/desktop 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/designs/profile-finder-page/desktop/desktop 2.png -------------------------------------------------------------------------------- /designs/profile-finder-page/mobile/mobile 1 (no description).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/designs/profile-finder-page/mobile/mobile 1 (no description).pdf -------------------------------------------------------------------------------- /designs/profile-finder-page/mobile/mobile 1 (no description).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/designs/profile-finder-page/mobile/mobile 1 (no description).png -------------------------------------------------------------------------------- /designs/profile-finder-page/mobile/mobile 1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/designs/profile-finder-page/mobile/mobile 1.pdf -------------------------------------------------------------------------------- /designs/profile-finder-page/mobile/mobile 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/designs/profile-finder-page/mobile/mobile 1.png -------------------------------------------------------------------------------- /designs/profile-finder-page/mobile/mobile 2 (no description).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/designs/profile-finder-page/mobile/mobile 2 (no description).pdf -------------------------------------------------------------------------------- /designs/profile-finder-page/mobile/mobile 2 (no description).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/designs/profile-finder-page/mobile/mobile 2 (no description).png -------------------------------------------------------------------------------- /designs/profile-finder-page/mobile/mobile 2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/designs/profile-finder-page/mobile/mobile 2.pdf -------------------------------------------------------------------------------- /designs/profile-finder-page/mobile/mobile 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/designs/profile-finder-page/mobile/mobile 2.png -------------------------------------------------------------------------------- /designs/public-profile-page/desktop 1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/designs/public-profile-page/desktop 1.pdf -------------------------------------------------------------------------------- /designs/public-profile-page/desktop/desktop 1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/designs/public-profile-page/desktop/desktop 1.pdf -------------------------------------------------------------------------------- /designs/public-profile-page/desktop/desktop2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/designs/public-profile-page/desktop/desktop2.pdf -------------------------------------------------------------------------------- /designs/public-profile-page/desktop2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/designs/public-profile-page/desktop2.pdf -------------------------------------------------------------------------------- /designs/public-profile-page/mobile/mobile1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/designs/public-profile-page/mobile/mobile1.pdf -------------------------------------------------------------------------------- /designs/public-profile-page/mobile/mobile1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/designs/public-profile-page/mobile/mobile1.png -------------------------------------------------------------------------------- /designs/public-profile-page/mobile/mobile2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/designs/public-profile-page/mobile/mobile2.pdf -------------------------------------------------------------------------------- /designs/public-profile-page/mobile/mobile2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/designs/public-profile-page/mobile/mobile2.png -------------------------------------------------------------------------------- /designs/public-profile-page/mobile1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/designs/public-profile-page/mobile1.pdf -------------------------------------------------------------------------------- /designs/public-profile-page/mobile1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/designs/public-profile-page/mobile1.png -------------------------------------------------------------------------------- /designs/public-profile-page/mobile2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/designs/public-profile-page/mobile2.pdf -------------------------------------------------------------------------------- /designs/public-profile-page/mobile2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/designs/public-profile-page/mobile2.png -------------------------------------------------------------------------------- /frontend/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/.eslintrc.json -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/.prettierrc -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- 1 | ## Front-End for URL Shortener -------------------------------------------------------------------------------- /frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/index.html -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/public/_redirects -------------------------------------------------------------------------------- /frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/public/logo.png -------------------------------------------------------------------------------- /frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/public/manifest.json -------------------------------------------------------------------------------- /frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/App.css -------------------------------------------------------------------------------- /frontend/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/App.jsx -------------------------------------------------------------------------------- /frontend/src/assets/cont1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/assets/cont1.json -------------------------------------------------------------------------------- /frontend/src/assets/images/feedback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/assets/images/feedback.png -------------------------------------------------------------------------------- /frontend/src/components/About.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/components/About.jsx -------------------------------------------------------------------------------- /frontend/src/components/AxiosFetch.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/components/AxiosFetch.jsx -------------------------------------------------------------------------------- /frontend/src/components/Contributers.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/components/Contributers.css -------------------------------------------------------------------------------- /frontend/src/components/Contributers.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/components/Contributers.jsx -------------------------------------------------------------------------------- /frontend/src/components/Contributors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/components/Contributors.css -------------------------------------------------------------------------------- /frontend/src/components/Contributors.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/components/Contributors.jsx -------------------------------------------------------------------------------- /frontend/src/components/ExportToExcel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/components/ExportToExcel.jsx -------------------------------------------------------------------------------- /frontend/src/components/FeedbackForm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/components/FeedbackForm.css -------------------------------------------------------------------------------- /frontend/src/components/FeedbackForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/components/FeedbackForm.jsx -------------------------------------------------------------------------------- /frontend/src/components/Footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/components/Footer.css -------------------------------------------------------------------------------- /frontend/src/components/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/components/Footer.jsx -------------------------------------------------------------------------------- /frontend/src/components/ForgotPassword.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/components/ForgotPassword.jsx -------------------------------------------------------------------------------- /frontend/src/components/History.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/components/History.jsx -------------------------------------------------------------------------------- /frontend/src/components/HistoryCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/components/HistoryCard.jsx -------------------------------------------------------------------------------- /frontend/src/components/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/components/Home.jsx -------------------------------------------------------------------------------- /frontend/src/components/LandingPage/Hero.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/components/LandingPage/Hero.jsx -------------------------------------------------------------------------------- /frontend/src/components/LandingPage/HomePage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/components/LandingPage/HomePage.jsx -------------------------------------------------------------------------------- /frontend/src/components/LandingPage/Images/ShortenDesktop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/components/LandingPage/Images/ShortenDesktop.svg -------------------------------------------------------------------------------- /frontend/src/components/LandingPage/Images/ShortenMobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/components/LandingPage/Images/ShortenMobile.svg -------------------------------------------------------------------------------- /frontend/src/components/LandingPage/Images/desktop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/components/LandingPage/Images/desktop.svg -------------------------------------------------------------------------------- /frontend/src/components/LandingPage/Images/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/components/LandingPage/Images/facebook.svg -------------------------------------------------------------------------------- /frontend/src/components/LandingPage/Images/img.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/components/LandingPage/Images/img.svg -------------------------------------------------------------------------------- /frontend/src/components/LandingPage/Images/instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/components/LandingPage/Images/instagram.svg -------------------------------------------------------------------------------- /frontend/src/components/LandingPage/Images/mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/components/LandingPage/Images/mobile.svg -------------------------------------------------------------------------------- /frontend/src/components/LandingPage/Images/pinterest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/components/LandingPage/Images/pinterest.svg -------------------------------------------------------------------------------- /frontend/src/components/LandingPage/Images/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/components/LandingPage/Images/twitter.svg -------------------------------------------------------------------------------- /frontend/src/components/LandingPage/Images/working_img.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/components/LandingPage/Images/working_img.svg -------------------------------------------------------------------------------- /frontend/src/components/LandingPage/LandingPage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/components/LandingPage/LandingPage.css -------------------------------------------------------------------------------- /frontend/src/components/LandingPage/LandingPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/components/LandingPage/LandingPage.jsx -------------------------------------------------------------------------------- /frontend/src/components/LandingPage/appTheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/components/LandingPage/appTheme.js -------------------------------------------------------------------------------- /frontend/src/components/LandingPage/footer_segment/BoostBox.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/components/LandingPage/footer_segment/BoostBox.jsx -------------------------------------------------------------------------------- /frontend/src/components/LandingPage/footer_segment/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/components/LandingPage/footer_segment/Footer.jsx -------------------------------------------------------------------------------- /frontend/src/components/LandingPage/footer_segment/FooterLink.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/components/LandingPage/footer_segment/FooterLink.jsx -------------------------------------------------------------------------------- /frontend/src/components/LandingPage/footer_segment/FooterLinkList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/components/LandingPage/footer_segment/FooterLinkList.jsx -------------------------------------------------------------------------------- /frontend/src/components/LandingPage/footer_segment/FooterSegment.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/components/LandingPage/footer_segment/FooterSegment.jsx -------------------------------------------------------------------------------- /frontend/src/components/LandingPage/form/BackHalfForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/components/LandingPage/form/BackHalfForm.jsx -------------------------------------------------------------------------------- /frontend/src/components/LandingPage/form/LinkForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/components/LandingPage/form/LinkForm.jsx -------------------------------------------------------------------------------- /frontend/src/components/LandingPage/form/LinkList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/components/LandingPage/form/LinkList.jsx -------------------------------------------------------------------------------- /frontend/src/components/LandingPage/form/LinkParent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/components/LandingPage/form/LinkParent.jsx -------------------------------------------------------------------------------- /frontend/src/components/LandingPage/form/Schema.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/components/LandingPage/form/Schema.jsx -------------------------------------------------------------------------------- /frontend/src/components/LandingPage/form/SingleOutput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/components/LandingPage/form/SingleOutput.jsx -------------------------------------------------------------------------------- /frontend/src/components/Linkinbio.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/components/Linkinbio.jsx -------------------------------------------------------------------------------- /frontend/src/components/Login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/components/Login.jsx -------------------------------------------------------------------------------- /frontend/src/components/Logout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/components/Logout.jsx -------------------------------------------------------------------------------- /frontend/src/components/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/components/Navbar.jsx -------------------------------------------------------------------------------- /frontend/src/components/Pagination.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/components/Pagination.jsx -------------------------------------------------------------------------------- /frontend/src/components/ProfileForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/components/ProfileForm.jsx -------------------------------------------------------------------------------- /frontend/src/components/ProfilePage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/components/ProfilePage.jsx -------------------------------------------------------------------------------- /frontend/src/components/ResetPassword.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/components/ResetPassword.jsx -------------------------------------------------------------------------------- /frontend/src/components/Sharepage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/components/Sharepage.css -------------------------------------------------------------------------------- /frontend/src/components/Sharepage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/components/Sharepage.jsx -------------------------------------------------------------------------------- /frontend/src/components/Signup.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/components/Signup.jsx -------------------------------------------------------------------------------- /frontend/src/components/linkinbio.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/components/linkinbio.css -------------------------------------------------------------------------------- /frontend/src/context/UserContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/context/UserContext.js -------------------------------------------------------------------------------- /frontend/src/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/src/index.jsx -------------------------------------------------------------------------------- /frontend/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/frontend/vite.config.js -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DhananjayThomble/URL-Shortener-App/HEAD/package.json --------------------------------------------------------------------------------