├── .gitignore ├── LICENSE ├── README.md ├── components ├── Button.tsx ├── Input.tsx ├── LoginModal.tsx ├── NavItem.tsx ├── Navbar.tsx ├── NewResourceModal.tsx └── SearchablePopup.tsx ├── contexts └── HereContext.tsx ├── hoc └── Layout.tsx ├── localComponents ├── CategoryPage │ └── Resource.tsx ├── Home │ └── SearchBar.tsx └── NewResourceModal │ ├── Header.tsx │ ├── Position1.tsx │ ├── Position2.tsx │ ├── Position3.tsx │ ├── Position4.tsx │ ├── Positions.tsx │ └── TogglerButtons.tsx ├── next-env.d.ts ├── package.json ├── pages ├── [categoryName].tsx ├── _app.tsx ├── _document.tsx ├── api │ └── auth │ │ └── [...nextauth].ts ├── index.tsx └── resource │ └── [resourceId].tsx ├── partials └── MetaData.tsx ├── postcss.config.js ├── public ├── cae5433c70.js ├── favicon │ ├── android-chrome-192x192.png │ ├── apple-touch-icon.png │ ├── browserconfig.xml │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── mstile-150x150.png │ ├── safari-pinned-tab.svg │ └── site.webmanifest ├── favicon_package_v0.16.zip ├── login-vector.png └── logo-sm.png ├── schema └── SessionSchema.ts ├── styles ├── Navbar.css └── globals.css ├── tailwind.config.js ├── tsconfig.json ├── util └── searchablePopupUtil.ts └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covisource/covisource-web/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covisource/covisource-web/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covisource/covisource-web/HEAD/README.md -------------------------------------------------------------------------------- /components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covisource/covisource-web/HEAD/components/Button.tsx -------------------------------------------------------------------------------- /components/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covisource/covisource-web/HEAD/components/Input.tsx -------------------------------------------------------------------------------- /components/LoginModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covisource/covisource-web/HEAD/components/LoginModal.tsx -------------------------------------------------------------------------------- /components/NavItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covisource/covisource-web/HEAD/components/NavItem.tsx -------------------------------------------------------------------------------- /components/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covisource/covisource-web/HEAD/components/Navbar.tsx -------------------------------------------------------------------------------- /components/NewResourceModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covisource/covisource-web/HEAD/components/NewResourceModal.tsx -------------------------------------------------------------------------------- /components/SearchablePopup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covisource/covisource-web/HEAD/components/SearchablePopup.tsx -------------------------------------------------------------------------------- /contexts/HereContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covisource/covisource-web/HEAD/contexts/HereContext.tsx -------------------------------------------------------------------------------- /hoc/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covisource/covisource-web/HEAD/hoc/Layout.tsx -------------------------------------------------------------------------------- /localComponents/CategoryPage/Resource.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covisource/covisource-web/HEAD/localComponents/CategoryPage/Resource.tsx -------------------------------------------------------------------------------- /localComponents/Home/SearchBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covisource/covisource-web/HEAD/localComponents/Home/SearchBar.tsx -------------------------------------------------------------------------------- /localComponents/NewResourceModal/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covisource/covisource-web/HEAD/localComponents/NewResourceModal/Header.tsx -------------------------------------------------------------------------------- /localComponents/NewResourceModal/Position1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covisource/covisource-web/HEAD/localComponents/NewResourceModal/Position1.tsx -------------------------------------------------------------------------------- /localComponents/NewResourceModal/Position2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covisource/covisource-web/HEAD/localComponents/NewResourceModal/Position2.tsx -------------------------------------------------------------------------------- /localComponents/NewResourceModal/Position3.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covisource/covisource-web/HEAD/localComponents/NewResourceModal/Position3.tsx -------------------------------------------------------------------------------- /localComponents/NewResourceModal/Position4.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covisource/covisource-web/HEAD/localComponents/NewResourceModal/Position4.tsx -------------------------------------------------------------------------------- /localComponents/NewResourceModal/Positions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covisource/covisource-web/HEAD/localComponents/NewResourceModal/Positions.tsx -------------------------------------------------------------------------------- /localComponents/NewResourceModal/TogglerButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covisource/covisource-web/HEAD/localComponents/NewResourceModal/TogglerButtons.tsx -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covisource/covisource-web/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covisource/covisource-web/HEAD/package.json -------------------------------------------------------------------------------- /pages/[categoryName].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covisource/covisource-web/HEAD/pages/[categoryName].tsx -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covisource/covisource-web/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covisource/covisource-web/HEAD/pages/_document.tsx -------------------------------------------------------------------------------- /pages/api/auth/[...nextauth].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covisource/covisource-web/HEAD/pages/api/auth/[...nextauth].ts -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covisource/covisource-web/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /pages/resource/[resourceId].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covisource/covisource-web/HEAD/pages/resource/[resourceId].tsx -------------------------------------------------------------------------------- /partials/MetaData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covisource/covisource-web/HEAD/partials/MetaData.tsx -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covisource/covisource-web/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/cae5433c70.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covisource/covisource-web/HEAD/public/cae5433c70.js -------------------------------------------------------------------------------- /public/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covisource/covisource-web/HEAD/public/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covisource/covisource-web/HEAD/public/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicon/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covisource/covisource-web/HEAD/public/favicon/browserconfig.xml -------------------------------------------------------------------------------- /public/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covisource/covisource-web/HEAD/public/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covisource/covisource-web/HEAD/public/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covisource/covisource-web/HEAD/public/favicon/favicon.ico -------------------------------------------------------------------------------- /public/favicon/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covisource/covisource-web/HEAD/public/favicon/mstile-150x150.png -------------------------------------------------------------------------------- /public/favicon/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covisource/covisource-web/HEAD/public/favicon/safari-pinned-tab.svg -------------------------------------------------------------------------------- /public/favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covisource/covisource-web/HEAD/public/favicon/site.webmanifest -------------------------------------------------------------------------------- /public/favicon_package_v0.16.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covisource/covisource-web/HEAD/public/favicon_package_v0.16.zip -------------------------------------------------------------------------------- /public/login-vector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covisource/covisource-web/HEAD/public/login-vector.png -------------------------------------------------------------------------------- /public/logo-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covisource/covisource-web/HEAD/public/logo-sm.png -------------------------------------------------------------------------------- /schema/SessionSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covisource/covisource-web/HEAD/schema/SessionSchema.ts -------------------------------------------------------------------------------- /styles/Navbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covisource/covisource-web/HEAD/styles/Navbar.css -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covisource/covisource-web/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covisource/covisource-web/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covisource/covisource-web/HEAD/tsconfig.json -------------------------------------------------------------------------------- /util/searchablePopupUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covisource/covisource-web/HEAD/util/searchablePopupUtil.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Covisource/covisource-web/HEAD/yarn.lock --------------------------------------------------------------------------------