├── .gitignore ├── README.md ├── eslint.config.js ├── index.html ├── package.json ├── postcss.config.js ├── public ├── banner-consciousapp.png └── logo.png ├── src ├── App.tsx ├── assets │ ├── 07cd57c62930a45e8d19d9d8d36aa85c.jpg │ ├── cfaeebc3ea50c461b550a8cea90b2bdc.jpg │ ├── fonts │ │ └── Recoleta-RegularDEMO.otf │ ├── image.png │ ├── image2.png │ ├── image3.png │ └── image4.png ├── components │ ├── Button.tsx │ ├── Card.tsx │ ├── Chips.tsx │ ├── CommonMondal.tsx │ ├── DarkModeButton.tsx │ ├── DropDown.tsx │ ├── Footer.tsx │ ├── Header.tsx │ ├── Input.tsx │ ├── LoadingCard.tsx │ ├── Modal.tsx │ ├── PushButtons.tsx │ ├── SearchBox.tsx │ ├── SideBar.tsx │ ├── Toast.tsx │ └── TypewriterEffect.tsx ├── fonts.css ├── icons │ ├── Delete.tsx │ ├── Expand.tsx │ ├── NoteIcon.tsx │ └── ShareIcon.tsx ├── index.css ├── main.tsx ├── pages │ ├── Auth.tsx │ ├── Dashboard.tsx │ └── HomePage.tsx ├── store │ ├── features │ │ └── uiSlice.ts │ ├── hooks.ts │ └── store.ts └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json ├── vercel.json └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreyas-cheviri/consciousapp-client/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreyas-cheviri/consciousapp-client/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreyas-cheviri/consciousapp-client/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreyas-cheviri/consciousapp-client/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreyas-cheviri/consciousapp-client/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreyas-cheviri/consciousapp-client/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/banner-consciousapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreyas-cheviri/consciousapp-client/HEAD/public/banner-consciousapp.png -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreyas-cheviri/consciousapp-client/HEAD/public/logo.png -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreyas-cheviri/consciousapp-client/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/assets/07cd57c62930a45e8d19d9d8d36aa85c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreyas-cheviri/consciousapp-client/HEAD/src/assets/07cd57c62930a45e8d19d9d8d36aa85c.jpg -------------------------------------------------------------------------------- /src/assets/cfaeebc3ea50c461b550a8cea90b2bdc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreyas-cheviri/consciousapp-client/HEAD/src/assets/cfaeebc3ea50c461b550a8cea90b2bdc.jpg -------------------------------------------------------------------------------- /src/assets/fonts/Recoleta-RegularDEMO.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreyas-cheviri/consciousapp-client/HEAD/src/assets/fonts/Recoleta-RegularDEMO.otf -------------------------------------------------------------------------------- /src/assets/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreyas-cheviri/consciousapp-client/HEAD/src/assets/image.png -------------------------------------------------------------------------------- /src/assets/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreyas-cheviri/consciousapp-client/HEAD/src/assets/image2.png -------------------------------------------------------------------------------- /src/assets/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreyas-cheviri/consciousapp-client/HEAD/src/assets/image3.png -------------------------------------------------------------------------------- /src/assets/image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreyas-cheviri/consciousapp-client/HEAD/src/assets/image4.png -------------------------------------------------------------------------------- /src/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreyas-cheviri/consciousapp-client/HEAD/src/components/Button.tsx -------------------------------------------------------------------------------- /src/components/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreyas-cheviri/consciousapp-client/HEAD/src/components/Card.tsx -------------------------------------------------------------------------------- /src/components/Chips.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreyas-cheviri/consciousapp-client/HEAD/src/components/Chips.tsx -------------------------------------------------------------------------------- /src/components/CommonMondal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreyas-cheviri/consciousapp-client/HEAD/src/components/CommonMondal.tsx -------------------------------------------------------------------------------- /src/components/DarkModeButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreyas-cheviri/consciousapp-client/HEAD/src/components/DarkModeButton.tsx -------------------------------------------------------------------------------- /src/components/DropDown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreyas-cheviri/consciousapp-client/HEAD/src/components/DropDown.tsx -------------------------------------------------------------------------------- /src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreyas-cheviri/consciousapp-client/HEAD/src/components/Footer.tsx -------------------------------------------------------------------------------- /src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreyas-cheviri/consciousapp-client/HEAD/src/components/Header.tsx -------------------------------------------------------------------------------- /src/components/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreyas-cheviri/consciousapp-client/HEAD/src/components/Input.tsx -------------------------------------------------------------------------------- /src/components/LoadingCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreyas-cheviri/consciousapp-client/HEAD/src/components/LoadingCard.tsx -------------------------------------------------------------------------------- /src/components/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreyas-cheviri/consciousapp-client/HEAD/src/components/Modal.tsx -------------------------------------------------------------------------------- /src/components/PushButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreyas-cheviri/consciousapp-client/HEAD/src/components/PushButtons.tsx -------------------------------------------------------------------------------- /src/components/SearchBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreyas-cheviri/consciousapp-client/HEAD/src/components/SearchBox.tsx -------------------------------------------------------------------------------- /src/components/SideBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreyas-cheviri/consciousapp-client/HEAD/src/components/SideBar.tsx -------------------------------------------------------------------------------- /src/components/Toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreyas-cheviri/consciousapp-client/HEAD/src/components/Toast.tsx -------------------------------------------------------------------------------- /src/components/TypewriterEffect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreyas-cheviri/consciousapp-client/HEAD/src/components/TypewriterEffect.tsx -------------------------------------------------------------------------------- /src/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreyas-cheviri/consciousapp-client/HEAD/src/fonts.css -------------------------------------------------------------------------------- /src/icons/Delete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreyas-cheviri/consciousapp-client/HEAD/src/icons/Delete.tsx -------------------------------------------------------------------------------- /src/icons/Expand.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreyas-cheviri/consciousapp-client/HEAD/src/icons/Expand.tsx -------------------------------------------------------------------------------- /src/icons/NoteIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreyas-cheviri/consciousapp-client/HEAD/src/icons/NoteIcon.tsx -------------------------------------------------------------------------------- /src/icons/ShareIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreyas-cheviri/consciousapp-client/HEAD/src/icons/ShareIcon.tsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreyas-cheviri/consciousapp-client/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreyas-cheviri/consciousapp-client/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/pages/Auth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreyas-cheviri/consciousapp-client/HEAD/src/pages/Auth.tsx -------------------------------------------------------------------------------- /src/pages/Dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreyas-cheviri/consciousapp-client/HEAD/src/pages/Dashboard.tsx -------------------------------------------------------------------------------- /src/pages/HomePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreyas-cheviri/consciousapp-client/HEAD/src/pages/HomePage.tsx -------------------------------------------------------------------------------- /src/store/features/uiSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreyas-cheviri/consciousapp-client/HEAD/src/store/features/uiSlice.ts -------------------------------------------------------------------------------- /src/store/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreyas-cheviri/consciousapp-client/HEAD/src/store/hooks.ts -------------------------------------------------------------------------------- /src/store/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreyas-cheviri/consciousapp-client/HEAD/src/store/store.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreyas-cheviri/consciousapp-client/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreyas-cheviri/consciousapp-client/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreyas-cheviri/consciousapp-client/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreyas-cheviri/consciousapp-client/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreyas-cheviri/consciousapp-client/HEAD/vercel.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreyas-cheviri/consciousapp-client/HEAD/vite.config.ts --------------------------------------------------------------------------------