├── .gitignore ├── .prettierrc ├── LICENSE.md ├── README.md ├── babel.config.js ├── drizzle.config.js ├── index.html ├── package.json ├── postcss.config.js ├── src ├── App.jsx ├── assets │ ├── apps.svg │ ├── index.js │ ├── loader.svg │ ├── menu.svg │ ├── records.svg │ ├── screening.svg │ ├── search.svg │ ├── sun.svg │ └── user.svg ├── components │ ├── ColumnContainer.jsx │ ├── CustomButton.jsx │ ├── DisplayInfo.jsx │ ├── KanbanBoard.jsx │ ├── Loader.jsx │ ├── MetricsCard.jsx │ ├── Navbar.jsx │ ├── Sidebar.jsx │ ├── TaskCard.jsx │ └── index.js ├── constants │ └── index.js ├── context │ └── index.jsx ├── index.css ├── main.jsx ├── pages │ ├── Home.jsx │ ├── Onboarding.jsx │ ├── Profile.jsx │ ├── ScreeningSchedule.jsx │ ├── index.js │ └── records │ │ ├── components │ │ ├── Modal.jsx │ │ ├── create-record-modal.jsx │ │ ├── file-upload-modal.jsx │ │ ├── loading-spinner.jsx │ │ ├── record-card.jsx │ │ └── record-details-header.jsx │ │ ├── index.jsx │ │ └── single-record-details.jsx └── utils │ ├── dbConfig.jsx │ └── schema.jsx ├── tailwind.config.js ├── vite.config.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/beat-cancer/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/beat-cancer/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/beat-cancer/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/beat-cancer/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/beat-cancer/HEAD/babel.config.js -------------------------------------------------------------------------------- /drizzle.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/beat-cancer/HEAD/drizzle.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/beat-cancer/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/beat-cancer/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/beat-cancer/HEAD/postcss.config.js -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/beat-cancer/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/assets/apps.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/beat-cancer/HEAD/src/assets/apps.svg -------------------------------------------------------------------------------- /src/assets/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/beat-cancer/HEAD/src/assets/index.js -------------------------------------------------------------------------------- /src/assets/loader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/beat-cancer/HEAD/src/assets/loader.svg -------------------------------------------------------------------------------- /src/assets/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/beat-cancer/HEAD/src/assets/menu.svg -------------------------------------------------------------------------------- /src/assets/records.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/beat-cancer/HEAD/src/assets/records.svg -------------------------------------------------------------------------------- /src/assets/screening.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/beat-cancer/HEAD/src/assets/screening.svg -------------------------------------------------------------------------------- /src/assets/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/beat-cancer/HEAD/src/assets/search.svg -------------------------------------------------------------------------------- /src/assets/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/beat-cancer/HEAD/src/assets/sun.svg -------------------------------------------------------------------------------- /src/assets/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/beat-cancer/HEAD/src/assets/user.svg -------------------------------------------------------------------------------- /src/components/ColumnContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/beat-cancer/HEAD/src/components/ColumnContainer.jsx -------------------------------------------------------------------------------- /src/components/CustomButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/beat-cancer/HEAD/src/components/CustomButton.jsx -------------------------------------------------------------------------------- /src/components/DisplayInfo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/beat-cancer/HEAD/src/components/DisplayInfo.jsx -------------------------------------------------------------------------------- /src/components/KanbanBoard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/beat-cancer/HEAD/src/components/KanbanBoard.jsx -------------------------------------------------------------------------------- /src/components/Loader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/beat-cancer/HEAD/src/components/Loader.jsx -------------------------------------------------------------------------------- /src/components/MetricsCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/beat-cancer/HEAD/src/components/MetricsCard.jsx -------------------------------------------------------------------------------- /src/components/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/beat-cancer/HEAD/src/components/Navbar.jsx -------------------------------------------------------------------------------- /src/components/Sidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/beat-cancer/HEAD/src/components/Sidebar.jsx -------------------------------------------------------------------------------- /src/components/TaskCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/beat-cancer/HEAD/src/components/TaskCard.jsx -------------------------------------------------------------------------------- /src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/beat-cancer/HEAD/src/components/index.js -------------------------------------------------------------------------------- /src/constants/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/beat-cancer/HEAD/src/constants/index.js -------------------------------------------------------------------------------- /src/context/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/beat-cancer/HEAD/src/context/index.jsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/beat-cancer/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/beat-cancer/HEAD/src/main.jsx -------------------------------------------------------------------------------- /src/pages/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/beat-cancer/HEAD/src/pages/Home.jsx -------------------------------------------------------------------------------- /src/pages/Onboarding.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/beat-cancer/HEAD/src/pages/Onboarding.jsx -------------------------------------------------------------------------------- /src/pages/Profile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/beat-cancer/HEAD/src/pages/Profile.jsx -------------------------------------------------------------------------------- /src/pages/ScreeningSchedule.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/beat-cancer/HEAD/src/pages/ScreeningSchedule.jsx -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/beat-cancer/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/pages/records/components/Modal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/beat-cancer/HEAD/src/pages/records/components/Modal.jsx -------------------------------------------------------------------------------- /src/pages/records/components/create-record-modal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/beat-cancer/HEAD/src/pages/records/components/create-record-modal.jsx -------------------------------------------------------------------------------- /src/pages/records/components/file-upload-modal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/beat-cancer/HEAD/src/pages/records/components/file-upload-modal.jsx -------------------------------------------------------------------------------- /src/pages/records/components/loading-spinner.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/beat-cancer/HEAD/src/pages/records/components/loading-spinner.jsx -------------------------------------------------------------------------------- /src/pages/records/components/record-card.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/beat-cancer/HEAD/src/pages/records/components/record-card.jsx -------------------------------------------------------------------------------- /src/pages/records/components/record-details-header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/beat-cancer/HEAD/src/pages/records/components/record-details-header.jsx -------------------------------------------------------------------------------- /src/pages/records/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/beat-cancer/HEAD/src/pages/records/index.jsx -------------------------------------------------------------------------------- /src/pages/records/single-record-details.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/beat-cancer/HEAD/src/pages/records/single-record-details.jsx -------------------------------------------------------------------------------- /src/utils/dbConfig.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/beat-cancer/HEAD/src/utils/dbConfig.jsx -------------------------------------------------------------------------------- /src/utils/schema.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/beat-cancer/HEAD/src/utils/schema.jsx -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/beat-cancer/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/beat-cancer/HEAD/vite.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/beat-cancer/HEAD/yarn.lock --------------------------------------------------------------------------------