├── .github ├── ISSUE_TEMPLATE │ ├── BUG-REPORT.yml │ ├── FEATURE-REQUEST.yml │ ├── OTHER.yml │ └── contact_support.yml └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── apps ├── mobile │ └── noteslify │ │ ├── .eslintrc.cjs │ │ ├── .expo-shared │ │ └── assets.json │ │ ├── .gitignore │ │ ├── .prettierignore │ │ ├── .prettierrc.json │ │ ├── App.js │ │ ├── app.json │ │ ├── babel.config.cjs │ │ ├── context │ │ ├── native-base.js │ │ └── navigation.js │ │ ├── package.json │ │ ├── screen │ │ └── home │ │ │ └── index.js │ │ └── vitest.config.js └── web │ ├── backend │ ├── backend.Dockerfile │ ├── db.js │ ├── helper │ │ └── helper.js │ ├── index.js │ ├── middleware │ │ ├── error.js │ │ └── fetchuser.js │ ├── models │ │ ├── DeleteAccount.js │ │ ├── Folders.js │ │ ├── ForgotPassword.js │ │ ├── Notes.js │ │ └── User.js │ ├── package.json │ └── routes │ │ ├── auth.js │ │ ├── folders.js │ │ └── notes.js │ ├── docker-compose.yaml │ ├── frontend │ ├── dist │ │ └── output.css │ ├── frontend.Dockerfile │ ├── generate-react-cli.json │ ├── notes-screenshot.PNG │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.js │ ├── public │ │ ├── assets │ │ │ ├── Contact.png │ │ │ ├── Vector.png │ │ │ ├── background-pattern.jpg │ │ │ ├── bgimage.png │ │ │ ├── email.png │ │ │ ├── logo.png │ │ │ ├── mobile.png │ │ │ ├── mobile2.png │ │ │ ├── mobile3.png │ │ │ ├── notes-screenshot.png │ │ │ ├── study.png │ │ │ └── vector-bottom.png │ │ ├── favicon.ico │ │ ├── favicon.png │ │ ├── index.html │ │ └── sitemap.xml │ ├── scripts │ │ └── generate-sitemap.js │ ├── src │ │ ├── App.css │ │ ├── App.js │ │ ├── assets │ │ │ ├── authentication.svg │ │ │ ├── background-pattern.jpg │ │ │ ├── error404.png │ │ │ ├── logo.png │ │ │ └── vector-bottom.png │ │ ├── components │ │ │ ├── Account │ │ │ │ ├── Account.css │ │ │ │ └── Account.js │ │ │ ├── DeleteAccount │ │ │ │ └── Deleteaccount.js │ │ │ ├── Error │ │ │ │ ├── ErrorPage.css │ │ │ │ └── ErrorPage.js │ │ │ ├── Folders │ │ │ │ ├── Folders.js │ │ │ │ └── OpenFolder.js │ │ │ ├── ForgotPassword │ │ │ │ ├── ForgotPassword.css │ │ │ │ └── ForgotPassword.js │ │ │ ├── GoBackTop.js │ │ │ ├── LandingPage │ │ │ │ ├── Components │ │ │ │ │ ├── About │ │ │ │ │ │ ├── About.css │ │ │ │ │ │ └── About.js │ │ │ │ │ ├── Contact_form │ │ │ │ │ │ ├── Contact.png │ │ │ │ │ │ ├── Contact_form.css │ │ │ │ │ │ └── Contact_form.js │ │ │ │ │ ├── Footer │ │ │ │ │ │ ├── Footer.css │ │ │ │ │ │ └── Footer.js │ │ │ │ │ ├── HeroSection │ │ │ │ │ │ ├── HeroSection.css │ │ │ │ │ │ └── HeroSection.js │ │ │ │ │ ├── Info │ │ │ │ │ │ ├── Info.css │ │ │ │ │ │ └── Info.js │ │ │ │ │ ├── NavBar │ │ │ │ │ │ ├── NavBar.css │ │ │ │ │ │ └── NavBar.js │ │ │ │ │ └── Newsletter │ │ │ │ │ │ ├── NewsLetter.css │ │ │ │ │ │ └── NewsLetter.js │ │ │ │ ├── LandingPage.css │ │ │ │ └── Pages │ │ │ │ │ ├── Contact.js │ │ │ │ │ └── Home.js │ │ │ ├── Login │ │ │ │ ├── Login.css │ │ │ │ └── Login.js │ │ │ ├── Notes │ │ │ │ ├── MarkdownNotes.js │ │ │ │ ├── Notes.css │ │ │ │ ├── Notes.js │ │ │ │ └── RenderInWindow.js │ │ │ ├── RecycleBin │ │ │ │ ├── RecycleBin.css │ │ │ │ └── RecycleBin.js │ │ │ ├── ResetPassword │ │ │ │ ├── ResetPassword.css │ │ │ │ └── ResetPassword.js │ │ │ ├── Setauthtoken.js │ │ │ ├── Sidenav │ │ │ │ ├── Sidenav.css │ │ │ │ └── Sidenav.js │ │ │ ├── Signup │ │ │ │ ├── Signup.css │ │ │ │ └── Signup.js │ │ │ └── common │ │ │ │ ├── Modal.css │ │ │ │ └── Modal.jsx │ │ ├── context │ │ │ ├── ContextWrapper.js │ │ │ ├── GlobalContext.js │ │ │ └── NotesContext.js │ │ ├── data │ │ │ ├── foldersData.json │ │ │ └── notesData.json │ │ ├── index.css │ │ └── index.js │ └── tailwind.config.js │ └── frontendnew │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.js │ ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ └── manifest.json │ ├── src │ ├── App.js │ ├── App.test.js │ ├── Utils │ │ └── WebConstants.js │ ├── components │ │ ├── Button │ │ │ ├── Custom.js │ │ │ ├── Hamburger.js │ │ │ ├── SignUp.js │ │ │ └── Theme.js │ │ ├── Container │ │ │ ├── ContactContainer.js │ │ │ ├── Cost.js │ │ │ ├── CustomerLogos.js │ │ │ ├── Features.js │ │ │ ├── LoginContainer.js │ │ │ ├── MainContainer.js │ │ │ ├── SignUpContainer.js │ │ │ └── Testimonials.js │ │ ├── Footer │ │ │ ├── CTA.js │ │ │ ├── Footer.js │ │ │ └── StickyFooter.js │ │ ├── Navbar │ │ │ ├── DesktopMenu.js │ │ │ ├── MobileNav.js │ │ │ └── TopNav.js │ │ └── Rating │ │ │ └── Review.js │ ├── contexts │ │ └── ThemeModeProvider.js │ ├── hooks │ │ └── useLocalStorage.js │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── pages │ │ ├── Contact │ │ │ └── Contact.js │ │ ├── Home │ │ │ └── Home.js │ │ ├── Login │ │ │ ├── Login.js │ │ │ └── SignUp.js │ │ ├── Notes │ │ │ └── Notes.js │ │ └── Pricing │ │ │ └── Pricing.js │ ├── reportWebVitals.js │ ├── services │ │ ├── ApiMethods.js │ │ └── Interceptors.js │ └── setupTests.js │ └── tailwind.config.js ├── images └── noteslifylogo.png └── package.json /.github/ISSUE_TEMPLATE/BUG-REPORT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/.github/ISSUE_TEMPLATE/BUG-REPORT.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/.github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/OTHER.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/.github/ISSUE_TEMPLATE/OTHER.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/contact_support.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/.github/ISSUE_TEMPLATE/contact_support.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/SECURITY.md -------------------------------------------------------------------------------- /apps/mobile/noteslify/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/mobile/noteslify/.eslintrc.cjs -------------------------------------------------------------------------------- /apps/mobile/noteslify/.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/mobile/noteslify/.expo-shared/assets.json -------------------------------------------------------------------------------- /apps/mobile/noteslify/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/mobile/noteslify/.gitignore -------------------------------------------------------------------------------- /apps/mobile/noteslify/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/mobile/noteslify/.prettierignore -------------------------------------------------------------------------------- /apps/mobile/noteslify/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/mobile/noteslify/.prettierrc.json -------------------------------------------------------------------------------- /apps/mobile/noteslify/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/mobile/noteslify/App.js -------------------------------------------------------------------------------- /apps/mobile/noteslify/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/mobile/noteslify/app.json -------------------------------------------------------------------------------- /apps/mobile/noteslify/babel.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/mobile/noteslify/babel.config.cjs -------------------------------------------------------------------------------- /apps/mobile/noteslify/context/native-base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/mobile/noteslify/context/native-base.js -------------------------------------------------------------------------------- /apps/mobile/noteslify/context/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/mobile/noteslify/context/navigation.js -------------------------------------------------------------------------------- /apps/mobile/noteslify/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/mobile/noteslify/package.json -------------------------------------------------------------------------------- /apps/mobile/noteslify/screen/home/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/mobile/noteslify/screen/home/index.js -------------------------------------------------------------------------------- /apps/mobile/noteslify/vitest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/mobile/noteslify/vitest.config.js -------------------------------------------------------------------------------- /apps/web/backend/backend.Dockerfile: -------------------------------------------------------------------------------- 1 | FROM node:14-alpine3.15 2 | COPY . . 3 | ENV DB="mongodb" 4 | RUN npm install 5 | CMD ["node", "index.js"] 6 | -------------------------------------------------------------------------------- /apps/web/backend/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/backend/db.js -------------------------------------------------------------------------------- /apps/web/backend/helper/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/backend/helper/helper.js -------------------------------------------------------------------------------- /apps/web/backend/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/backend/index.js -------------------------------------------------------------------------------- /apps/web/backend/middleware/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/backend/middleware/error.js -------------------------------------------------------------------------------- /apps/web/backend/middleware/fetchuser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/backend/middleware/fetchuser.js -------------------------------------------------------------------------------- /apps/web/backend/models/DeleteAccount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/backend/models/DeleteAccount.js -------------------------------------------------------------------------------- /apps/web/backend/models/Folders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/backend/models/Folders.js -------------------------------------------------------------------------------- /apps/web/backend/models/ForgotPassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/backend/models/ForgotPassword.js -------------------------------------------------------------------------------- /apps/web/backend/models/Notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/backend/models/Notes.js -------------------------------------------------------------------------------- /apps/web/backend/models/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/backend/models/User.js -------------------------------------------------------------------------------- /apps/web/backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/backend/package.json -------------------------------------------------------------------------------- /apps/web/backend/routes/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/backend/routes/auth.js -------------------------------------------------------------------------------- /apps/web/backend/routes/folders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/backend/routes/folders.js -------------------------------------------------------------------------------- /apps/web/backend/routes/notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/backend/routes/notes.js -------------------------------------------------------------------------------- /apps/web/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/docker-compose.yaml -------------------------------------------------------------------------------- /apps/web/frontend/dist/output.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/dist/output.css -------------------------------------------------------------------------------- /apps/web/frontend/frontend.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/frontend.Dockerfile -------------------------------------------------------------------------------- /apps/web/frontend/generate-react-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/generate-react-cli.json -------------------------------------------------------------------------------- /apps/web/frontend/notes-screenshot.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/notes-screenshot.PNG -------------------------------------------------------------------------------- /apps/web/frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/package-lock.json -------------------------------------------------------------------------------- /apps/web/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/package.json -------------------------------------------------------------------------------- /apps/web/frontend/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/postcss.config.js -------------------------------------------------------------------------------- /apps/web/frontend/public/assets/Contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/public/assets/Contact.png -------------------------------------------------------------------------------- /apps/web/frontend/public/assets/Vector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/public/assets/Vector.png -------------------------------------------------------------------------------- /apps/web/frontend/public/assets/background-pattern.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/public/assets/background-pattern.jpg -------------------------------------------------------------------------------- /apps/web/frontend/public/assets/bgimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/public/assets/bgimage.png -------------------------------------------------------------------------------- /apps/web/frontend/public/assets/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/public/assets/email.png -------------------------------------------------------------------------------- /apps/web/frontend/public/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/public/assets/logo.png -------------------------------------------------------------------------------- /apps/web/frontend/public/assets/mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/public/assets/mobile.png -------------------------------------------------------------------------------- /apps/web/frontend/public/assets/mobile2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/public/assets/mobile2.png -------------------------------------------------------------------------------- /apps/web/frontend/public/assets/mobile3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/public/assets/mobile3.png -------------------------------------------------------------------------------- /apps/web/frontend/public/assets/notes-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/public/assets/notes-screenshot.png -------------------------------------------------------------------------------- /apps/web/frontend/public/assets/study.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/public/assets/study.png -------------------------------------------------------------------------------- /apps/web/frontend/public/assets/vector-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/public/assets/vector-bottom.png -------------------------------------------------------------------------------- /apps/web/frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/public/favicon.ico -------------------------------------------------------------------------------- /apps/web/frontend/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/public/favicon.png -------------------------------------------------------------------------------- /apps/web/frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/public/index.html -------------------------------------------------------------------------------- /apps/web/frontend/public/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/public/sitemap.xml -------------------------------------------------------------------------------- /apps/web/frontend/scripts/generate-sitemap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/scripts/generate-sitemap.js -------------------------------------------------------------------------------- /apps/web/frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/App.css -------------------------------------------------------------------------------- /apps/web/frontend/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/App.js -------------------------------------------------------------------------------- /apps/web/frontend/src/assets/authentication.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/assets/authentication.svg -------------------------------------------------------------------------------- /apps/web/frontend/src/assets/background-pattern.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/assets/background-pattern.jpg -------------------------------------------------------------------------------- /apps/web/frontend/src/assets/error404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/assets/error404.png -------------------------------------------------------------------------------- /apps/web/frontend/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/assets/logo.png -------------------------------------------------------------------------------- /apps/web/frontend/src/assets/vector-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/assets/vector-bottom.png -------------------------------------------------------------------------------- /apps/web/frontend/src/components/Account/Account.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/components/Account/Account.css -------------------------------------------------------------------------------- /apps/web/frontend/src/components/Account/Account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/components/Account/Account.js -------------------------------------------------------------------------------- /apps/web/frontend/src/components/DeleteAccount/Deleteaccount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/components/DeleteAccount/Deleteaccount.js -------------------------------------------------------------------------------- /apps/web/frontend/src/components/Error/ErrorPage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/components/Error/ErrorPage.css -------------------------------------------------------------------------------- /apps/web/frontend/src/components/Error/ErrorPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/components/Error/ErrorPage.js -------------------------------------------------------------------------------- /apps/web/frontend/src/components/Folders/Folders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/components/Folders/Folders.js -------------------------------------------------------------------------------- /apps/web/frontend/src/components/Folders/OpenFolder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/components/Folders/OpenFolder.js -------------------------------------------------------------------------------- /apps/web/frontend/src/components/ForgotPassword/ForgotPassword.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/components/ForgotPassword/ForgotPassword.css -------------------------------------------------------------------------------- /apps/web/frontend/src/components/ForgotPassword/ForgotPassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/components/ForgotPassword/ForgotPassword.js -------------------------------------------------------------------------------- /apps/web/frontend/src/components/GoBackTop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/components/GoBackTop.js -------------------------------------------------------------------------------- /apps/web/frontend/src/components/LandingPage/Components/About/About.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/components/LandingPage/Components/About/About.css -------------------------------------------------------------------------------- /apps/web/frontend/src/components/LandingPage/Components/About/About.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/components/LandingPage/Components/About/About.js -------------------------------------------------------------------------------- /apps/web/frontend/src/components/LandingPage/Components/Contact_form/Contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/components/LandingPage/Components/Contact_form/Contact.png -------------------------------------------------------------------------------- /apps/web/frontend/src/components/LandingPage/Components/Contact_form/Contact_form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/components/LandingPage/Components/Contact_form/Contact_form.css -------------------------------------------------------------------------------- /apps/web/frontend/src/components/LandingPage/Components/Contact_form/Contact_form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/components/LandingPage/Components/Contact_form/Contact_form.js -------------------------------------------------------------------------------- /apps/web/frontend/src/components/LandingPage/Components/Footer/Footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/components/LandingPage/Components/Footer/Footer.css -------------------------------------------------------------------------------- /apps/web/frontend/src/components/LandingPage/Components/Footer/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/components/LandingPage/Components/Footer/Footer.js -------------------------------------------------------------------------------- /apps/web/frontend/src/components/LandingPage/Components/HeroSection/HeroSection.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/components/LandingPage/Components/HeroSection/HeroSection.css -------------------------------------------------------------------------------- /apps/web/frontend/src/components/LandingPage/Components/HeroSection/HeroSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/components/LandingPage/Components/HeroSection/HeroSection.js -------------------------------------------------------------------------------- /apps/web/frontend/src/components/LandingPage/Components/Info/Info.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/components/LandingPage/Components/Info/Info.css -------------------------------------------------------------------------------- /apps/web/frontend/src/components/LandingPage/Components/Info/Info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/components/LandingPage/Components/Info/Info.js -------------------------------------------------------------------------------- /apps/web/frontend/src/components/LandingPage/Components/NavBar/NavBar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/components/LandingPage/Components/NavBar/NavBar.css -------------------------------------------------------------------------------- /apps/web/frontend/src/components/LandingPage/Components/NavBar/NavBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/components/LandingPage/Components/NavBar/NavBar.js -------------------------------------------------------------------------------- /apps/web/frontend/src/components/LandingPage/Components/Newsletter/NewsLetter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/components/LandingPage/Components/Newsletter/NewsLetter.css -------------------------------------------------------------------------------- /apps/web/frontend/src/components/LandingPage/Components/Newsletter/NewsLetter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/components/LandingPage/Components/Newsletter/NewsLetter.js -------------------------------------------------------------------------------- /apps/web/frontend/src/components/LandingPage/LandingPage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/components/LandingPage/LandingPage.css -------------------------------------------------------------------------------- /apps/web/frontend/src/components/LandingPage/Pages/Contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/components/LandingPage/Pages/Contact.js -------------------------------------------------------------------------------- /apps/web/frontend/src/components/LandingPage/Pages/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/components/LandingPage/Pages/Home.js -------------------------------------------------------------------------------- /apps/web/frontend/src/components/Login/Login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/components/Login/Login.css -------------------------------------------------------------------------------- /apps/web/frontend/src/components/Login/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/components/Login/Login.js -------------------------------------------------------------------------------- /apps/web/frontend/src/components/Notes/MarkdownNotes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/components/Notes/MarkdownNotes.js -------------------------------------------------------------------------------- /apps/web/frontend/src/components/Notes/Notes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/components/Notes/Notes.css -------------------------------------------------------------------------------- /apps/web/frontend/src/components/Notes/Notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/components/Notes/Notes.js -------------------------------------------------------------------------------- /apps/web/frontend/src/components/Notes/RenderInWindow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/components/Notes/RenderInWindow.js -------------------------------------------------------------------------------- /apps/web/frontend/src/components/RecycleBin/RecycleBin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/components/RecycleBin/RecycleBin.css -------------------------------------------------------------------------------- /apps/web/frontend/src/components/RecycleBin/RecycleBin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/components/RecycleBin/RecycleBin.js -------------------------------------------------------------------------------- /apps/web/frontend/src/components/ResetPassword/ResetPassword.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/components/ResetPassword/ResetPassword.css -------------------------------------------------------------------------------- /apps/web/frontend/src/components/ResetPassword/ResetPassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/components/ResetPassword/ResetPassword.js -------------------------------------------------------------------------------- /apps/web/frontend/src/components/Setauthtoken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/components/Setauthtoken.js -------------------------------------------------------------------------------- /apps/web/frontend/src/components/Sidenav/Sidenav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/components/Sidenav/Sidenav.css -------------------------------------------------------------------------------- /apps/web/frontend/src/components/Sidenav/Sidenav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/components/Sidenav/Sidenav.js -------------------------------------------------------------------------------- /apps/web/frontend/src/components/Signup/Signup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/components/Signup/Signup.css -------------------------------------------------------------------------------- /apps/web/frontend/src/components/Signup/Signup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/components/Signup/Signup.js -------------------------------------------------------------------------------- /apps/web/frontend/src/components/common/Modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/components/common/Modal.css -------------------------------------------------------------------------------- /apps/web/frontend/src/components/common/Modal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/components/common/Modal.jsx -------------------------------------------------------------------------------- /apps/web/frontend/src/context/ContextWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/context/ContextWrapper.js -------------------------------------------------------------------------------- /apps/web/frontend/src/context/GlobalContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/context/GlobalContext.js -------------------------------------------------------------------------------- /apps/web/frontend/src/context/NotesContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/context/NotesContext.js -------------------------------------------------------------------------------- /apps/web/frontend/src/data/foldersData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/data/foldersData.json -------------------------------------------------------------------------------- /apps/web/frontend/src/data/notesData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/data/notesData.json -------------------------------------------------------------------------------- /apps/web/frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/index.css -------------------------------------------------------------------------------- /apps/web/frontend/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/src/index.js -------------------------------------------------------------------------------- /apps/web/frontend/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontend/tailwind.config.js -------------------------------------------------------------------------------- /apps/web/frontendnew/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontendnew/package-lock.json -------------------------------------------------------------------------------- /apps/web/frontendnew/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontendnew/package.json -------------------------------------------------------------------------------- /apps/web/frontendnew/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontendnew/postcss.config.js -------------------------------------------------------------------------------- /apps/web/frontendnew/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontendnew/public/favicon.ico -------------------------------------------------------------------------------- /apps/web/frontendnew/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontendnew/public/index.html -------------------------------------------------------------------------------- /apps/web/frontendnew/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontendnew/public/logo192.png -------------------------------------------------------------------------------- /apps/web/frontendnew/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontendnew/public/manifest.json -------------------------------------------------------------------------------- /apps/web/frontendnew/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontendnew/src/App.js -------------------------------------------------------------------------------- /apps/web/frontendnew/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontendnew/src/App.test.js -------------------------------------------------------------------------------- /apps/web/frontendnew/src/Utils/WebConstants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontendnew/src/Utils/WebConstants.js -------------------------------------------------------------------------------- /apps/web/frontendnew/src/components/Button/Custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontendnew/src/components/Button/Custom.js -------------------------------------------------------------------------------- /apps/web/frontendnew/src/components/Button/Hamburger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontendnew/src/components/Button/Hamburger.js -------------------------------------------------------------------------------- /apps/web/frontendnew/src/components/Button/SignUp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontendnew/src/components/Button/SignUp.js -------------------------------------------------------------------------------- /apps/web/frontendnew/src/components/Button/Theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontendnew/src/components/Button/Theme.js -------------------------------------------------------------------------------- /apps/web/frontendnew/src/components/Container/ContactContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontendnew/src/components/Container/ContactContainer.js -------------------------------------------------------------------------------- /apps/web/frontendnew/src/components/Container/Cost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontendnew/src/components/Container/Cost.js -------------------------------------------------------------------------------- /apps/web/frontendnew/src/components/Container/CustomerLogos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontendnew/src/components/Container/CustomerLogos.js -------------------------------------------------------------------------------- /apps/web/frontendnew/src/components/Container/Features.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontendnew/src/components/Container/Features.js -------------------------------------------------------------------------------- /apps/web/frontendnew/src/components/Container/LoginContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontendnew/src/components/Container/LoginContainer.js -------------------------------------------------------------------------------- /apps/web/frontendnew/src/components/Container/MainContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontendnew/src/components/Container/MainContainer.js -------------------------------------------------------------------------------- /apps/web/frontendnew/src/components/Container/SignUpContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontendnew/src/components/Container/SignUpContainer.js -------------------------------------------------------------------------------- /apps/web/frontendnew/src/components/Container/Testimonials.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontendnew/src/components/Container/Testimonials.js -------------------------------------------------------------------------------- /apps/web/frontendnew/src/components/Footer/CTA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontendnew/src/components/Footer/CTA.js -------------------------------------------------------------------------------- /apps/web/frontendnew/src/components/Footer/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontendnew/src/components/Footer/Footer.js -------------------------------------------------------------------------------- /apps/web/frontendnew/src/components/Footer/StickyFooter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontendnew/src/components/Footer/StickyFooter.js -------------------------------------------------------------------------------- /apps/web/frontendnew/src/components/Navbar/DesktopMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontendnew/src/components/Navbar/DesktopMenu.js -------------------------------------------------------------------------------- /apps/web/frontendnew/src/components/Navbar/MobileNav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontendnew/src/components/Navbar/MobileNav.js -------------------------------------------------------------------------------- /apps/web/frontendnew/src/components/Navbar/TopNav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontendnew/src/components/Navbar/TopNav.js -------------------------------------------------------------------------------- /apps/web/frontendnew/src/components/Rating/Review.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontendnew/src/components/Rating/Review.js -------------------------------------------------------------------------------- /apps/web/frontendnew/src/contexts/ThemeModeProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontendnew/src/contexts/ThemeModeProvider.js -------------------------------------------------------------------------------- /apps/web/frontendnew/src/hooks/useLocalStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontendnew/src/hooks/useLocalStorage.js -------------------------------------------------------------------------------- /apps/web/frontendnew/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontendnew/src/index.css -------------------------------------------------------------------------------- /apps/web/frontendnew/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontendnew/src/index.js -------------------------------------------------------------------------------- /apps/web/frontendnew/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontendnew/src/logo.svg -------------------------------------------------------------------------------- /apps/web/frontendnew/src/pages/Contact/Contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontendnew/src/pages/Contact/Contact.js -------------------------------------------------------------------------------- /apps/web/frontendnew/src/pages/Home/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontendnew/src/pages/Home/Home.js -------------------------------------------------------------------------------- /apps/web/frontendnew/src/pages/Login/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontendnew/src/pages/Login/Login.js -------------------------------------------------------------------------------- /apps/web/frontendnew/src/pages/Login/SignUp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontendnew/src/pages/Login/SignUp.js -------------------------------------------------------------------------------- /apps/web/frontendnew/src/pages/Notes/Notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontendnew/src/pages/Notes/Notes.js -------------------------------------------------------------------------------- /apps/web/frontendnew/src/pages/Pricing/Pricing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontendnew/src/pages/Pricing/Pricing.js -------------------------------------------------------------------------------- /apps/web/frontendnew/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontendnew/src/reportWebVitals.js -------------------------------------------------------------------------------- /apps/web/frontendnew/src/services/ApiMethods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontendnew/src/services/ApiMethods.js -------------------------------------------------------------------------------- /apps/web/frontendnew/src/services/Interceptors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontendnew/src/services/Interceptors.js -------------------------------------------------------------------------------- /apps/web/frontendnew/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontendnew/src/setupTests.js -------------------------------------------------------------------------------- /apps/web/frontendnew/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/apps/web/frontendnew/tailwind.config.js -------------------------------------------------------------------------------- /images/noteslifylogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/images/noteslifylogo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Noteslify/HEAD/package.json --------------------------------------------------------------------------------