├── .babelrc ├── .env ├── .eslintignore ├── .eslintrc.js ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md │ ├── PULL_REQUEST_TEMPLATE.md │ ├── ci.yml │ └── lighthouse.yml ├── .gitignore ├── .gitpod.dockerfile ├── .gitpod.yml ├── .husky ├── .gitignore ├── pre-commit └── pre-push ├── .prettierignore ├── .prettierrc ├── LICENSE ├── README.md ├── components └── EventPage │ ├── Categories.tsx │ ├── CustomLink.tsx │ ├── JoinEvent.tsx │ ├── TicketPart.tsx │ └── TicketTable.tsx ├── jest.config.js ├── lighthouserc.js ├── locale ├── bn │ ├── messages.js │ └── messages.po ├── de │ ├── messages.js │ └── messages.po ├── en │ ├── messages.js │ └── messages.po ├── es │ ├── messages.js │ └── messages.po ├── fr │ ├── messages.js │ └── messages.po ├── hi │ ├── messages.js │ └── messages.po ├── hr │ └── messages.po ├── id │ ├── messages.js │ └── messages.po ├── ja │ ├── messages.js │ └── messages.po ├── ko │ ├── messages.js │ └── messages.po ├── pl │ ├── messages.js │ └── messages.po ├── ru │ ├── messages.js │ └── messages.po ├── sv │ └── messages.po ├── th │ ├── messages.js │ └── messages.po ├── vi │ ├── messages.js │ └── messages.po ├── zh_Hans │ ├── messages.js │ └── messages.po └── zh_Hant │ ├── messages.js │ └── messages.po ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages ├── 404.tsx ├── _app.tsx ├── _document.tsx ├── _error.js ├── api │ └── hello.ts ├── e │ └── [id].tsx └── index.tsx ├── public ├── favicon.ico ├── fonts │ ├── roboto-v27-latin-300.eot │ ├── roboto-v27-latin-300.svg │ ├── roboto-v27-latin-300.ttf │ ├── roboto-v27-latin-300.woff │ ├── roboto-v27-latin-300.woff2 │ ├── roboto-v27-latin-500.eot │ ├── roboto-v27-latin-500.svg │ ├── roboto-v27-latin-500.ttf │ ├── roboto-v27-latin-500.woff │ ├── roboto-v27-latin-500.woff2 │ ├── roboto-v27-latin-700.eot │ ├── roboto-v27-latin-700.svg │ ├── roboto-v27-latin-700.ttf │ ├── roboto-v27-latin-700.woff │ ├── roboto-v27-latin-700.woff2 │ ├── roboto-v27-latin-regular.eot │ ├── roboto-v27-latin-regular.svg │ ├── roboto-v27-latin-regular.ttf │ ├── roboto-v27-latin-regular.woff │ └── roboto-v27-latin-regular.woff2 ├── landing.jpg ├── nprogress.css └── vercel.svg ├── src ├── components │ ├── Link.tsx │ ├── TranslateButton.tsx │ ├── layout │ │ ├── footer.tsx │ │ ├── index.tsx │ │ └── navbar.tsx │ └── templates │ │ ├── FooterFields.tsx │ │ ├── FrontPage.tsx │ │ ├── alert │ │ └── AlertCard.tsx │ │ ├── event │ │ └── EventCard.tsx │ │ └── group │ │ └── GroupCard.tsx ├── createEmotionCache.ts ├── theme.ts └── types │ └── main.d.ts ├── store └── date.ts ├── styles ├── Event.module.scss ├── Home.module.scss └── globals.scss ├── test ├── __mocks__ │ └── fileMock.js ├── pages │ ├── __snapshots__ │ │ └── index.test.tsx.snap │ └── index.test.tsx └── testUtils.js ├── tsconfig.json ├── utils ├── camelCase.ts ├── fetcher.ts ├── i18n.ts └── sentry.ts └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/.babelrc -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/.env -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/.github/workflows/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/workflows/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/.github/workflows/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/.github/workflows/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/lighthouse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/.github/workflows/lighthouse.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.dockerfile: -------------------------------------------------------------------------------- 1 | FROM gitpod/workspace-full 2 | -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.husky/pre-push: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npm run type-check 5 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/README.md -------------------------------------------------------------------------------- /components/EventPage/Categories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/components/EventPage/Categories.tsx -------------------------------------------------------------------------------- /components/EventPage/CustomLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/components/EventPage/CustomLink.tsx -------------------------------------------------------------------------------- /components/EventPage/JoinEvent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/components/EventPage/JoinEvent.tsx -------------------------------------------------------------------------------- /components/EventPage/TicketPart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/components/EventPage/TicketPart.tsx -------------------------------------------------------------------------------- /components/EventPage/TicketTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/components/EventPage/TicketTable.tsx -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/jest.config.js -------------------------------------------------------------------------------- /lighthouserc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/lighthouserc.js -------------------------------------------------------------------------------- /locale/bn/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/locale/bn/messages.js -------------------------------------------------------------------------------- /locale/bn/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/locale/bn/messages.po -------------------------------------------------------------------------------- /locale/de/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/locale/de/messages.js -------------------------------------------------------------------------------- /locale/de/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/locale/de/messages.po -------------------------------------------------------------------------------- /locale/en/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/locale/en/messages.js -------------------------------------------------------------------------------- /locale/en/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/locale/en/messages.po -------------------------------------------------------------------------------- /locale/es/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/locale/es/messages.js -------------------------------------------------------------------------------- /locale/es/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/locale/es/messages.po -------------------------------------------------------------------------------- /locale/fr/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/locale/fr/messages.js -------------------------------------------------------------------------------- /locale/fr/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/locale/fr/messages.po -------------------------------------------------------------------------------- /locale/hi/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/locale/hi/messages.js -------------------------------------------------------------------------------- /locale/hi/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/locale/hi/messages.po -------------------------------------------------------------------------------- /locale/hr/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/locale/hr/messages.po -------------------------------------------------------------------------------- /locale/id/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/locale/id/messages.js -------------------------------------------------------------------------------- /locale/id/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/locale/id/messages.po -------------------------------------------------------------------------------- /locale/ja/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/locale/ja/messages.js -------------------------------------------------------------------------------- /locale/ja/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/locale/ja/messages.po -------------------------------------------------------------------------------- /locale/ko/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/locale/ko/messages.js -------------------------------------------------------------------------------- /locale/ko/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/locale/ko/messages.po -------------------------------------------------------------------------------- /locale/pl/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/locale/pl/messages.js -------------------------------------------------------------------------------- /locale/pl/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/locale/pl/messages.po -------------------------------------------------------------------------------- /locale/ru/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/locale/ru/messages.js -------------------------------------------------------------------------------- /locale/ru/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/locale/ru/messages.po -------------------------------------------------------------------------------- /locale/sv/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/locale/sv/messages.po -------------------------------------------------------------------------------- /locale/th/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/locale/th/messages.js -------------------------------------------------------------------------------- /locale/th/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/locale/th/messages.po -------------------------------------------------------------------------------- /locale/vi/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/locale/vi/messages.js -------------------------------------------------------------------------------- /locale/vi/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/locale/vi/messages.po -------------------------------------------------------------------------------- /locale/zh_Hans/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/locale/zh_Hans/messages.js -------------------------------------------------------------------------------- /locale/zh_Hans/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/locale/zh_Hans/messages.po -------------------------------------------------------------------------------- /locale/zh_Hant/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/locale/zh_Hant/messages.js -------------------------------------------------------------------------------- /locale/zh_Hant/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/locale/zh_Hant/messages.po -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/package.json -------------------------------------------------------------------------------- /pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/pages/404.tsx -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/pages/_document.tsx -------------------------------------------------------------------------------- /pages/_error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/pages/_error.js -------------------------------------------------------------------------------- /pages/api/hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/pages/api/hello.ts -------------------------------------------------------------------------------- /pages/e/[id].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/pages/e/[id].tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/fonts/roboto-v27-latin-300.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/public/fonts/roboto-v27-latin-300.eot -------------------------------------------------------------------------------- /public/fonts/roboto-v27-latin-300.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/public/fonts/roboto-v27-latin-300.svg -------------------------------------------------------------------------------- /public/fonts/roboto-v27-latin-300.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/public/fonts/roboto-v27-latin-300.ttf -------------------------------------------------------------------------------- /public/fonts/roboto-v27-latin-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/public/fonts/roboto-v27-latin-300.woff -------------------------------------------------------------------------------- /public/fonts/roboto-v27-latin-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/public/fonts/roboto-v27-latin-300.woff2 -------------------------------------------------------------------------------- /public/fonts/roboto-v27-latin-500.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/public/fonts/roboto-v27-latin-500.eot -------------------------------------------------------------------------------- /public/fonts/roboto-v27-latin-500.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/public/fonts/roboto-v27-latin-500.svg -------------------------------------------------------------------------------- /public/fonts/roboto-v27-latin-500.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/public/fonts/roboto-v27-latin-500.ttf -------------------------------------------------------------------------------- /public/fonts/roboto-v27-latin-500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/public/fonts/roboto-v27-latin-500.woff -------------------------------------------------------------------------------- /public/fonts/roboto-v27-latin-500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/public/fonts/roboto-v27-latin-500.woff2 -------------------------------------------------------------------------------- /public/fonts/roboto-v27-latin-700.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/public/fonts/roboto-v27-latin-700.eot -------------------------------------------------------------------------------- /public/fonts/roboto-v27-latin-700.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/public/fonts/roboto-v27-latin-700.svg -------------------------------------------------------------------------------- /public/fonts/roboto-v27-latin-700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/public/fonts/roboto-v27-latin-700.ttf -------------------------------------------------------------------------------- /public/fonts/roboto-v27-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/public/fonts/roboto-v27-latin-700.woff -------------------------------------------------------------------------------- /public/fonts/roboto-v27-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/public/fonts/roboto-v27-latin-700.woff2 -------------------------------------------------------------------------------- /public/fonts/roboto-v27-latin-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/public/fonts/roboto-v27-latin-regular.eot -------------------------------------------------------------------------------- /public/fonts/roboto-v27-latin-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/public/fonts/roboto-v27-latin-regular.svg -------------------------------------------------------------------------------- /public/fonts/roboto-v27-latin-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/public/fonts/roboto-v27-latin-regular.ttf -------------------------------------------------------------------------------- /public/fonts/roboto-v27-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/public/fonts/roboto-v27-latin-regular.woff -------------------------------------------------------------------------------- /public/fonts/roboto-v27-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/public/fonts/roboto-v27-latin-regular.woff2 -------------------------------------------------------------------------------- /public/landing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/public/landing.jpg -------------------------------------------------------------------------------- /public/nprogress.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/public/nprogress.css -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /src/components/Link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/src/components/Link.tsx -------------------------------------------------------------------------------- /src/components/TranslateButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/src/components/TranslateButton.tsx -------------------------------------------------------------------------------- /src/components/layout/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/src/components/layout/footer.tsx -------------------------------------------------------------------------------- /src/components/layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/src/components/layout/index.tsx -------------------------------------------------------------------------------- /src/components/layout/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/src/components/layout/navbar.tsx -------------------------------------------------------------------------------- /src/components/templates/FooterFields.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/src/components/templates/FooterFields.tsx -------------------------------------------------------------------------------- /src/components/templates/FrontPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/src/components/templates/FrontPage.tsx -------------------------------------------------------------------------------- /src/components/templates/alert/AlertCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/src/components/templates/alert/AlertCard.tsx -------------------------------------------------------------------------------- /src/components/templates/event/EventCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/src/components/templates/event/EventCard.tsx -------------------------------------------------------------------------------- /src/components/templates/group/GroupCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/src/components/templates/group/GroupCard.tsx -------------------------------------------------------------------------------- /src/createEmotionCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/src/createEmotionCache.ts -------------------------------------------------------------------------------- /src/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/src/theme.ts -------------------------------------------------------------------------------- /src/types/main.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/src/types/main.d.ts -------------------------------------------------------------------------------- /store/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/store/date.ts -------------------------------------------------------------------------------- /styles/Event.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/styles/Event.module.scss -------------------------------------------------------------------------------- /styles/Home.module.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /styles/globals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/styles/globals.scss -------------------------------------------------------------------------------- /test/__mocks__/fileMock.js: -------------------------------------------------------------------------------- 1 | module.exports = 'test-file-stub' 2 | -------------------------------------------------------------------------------- /test/pages/__snapshots__/index.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/test/pages/__snapshots__/index.test.tsx.snap -------------------------------------------------------------------------------- /test/pages/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/test/pages/index.test.tsx -------------------------------------------------------------------------------- /test/testUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/test/testUtils.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/tsconfig.json -------------------------------------------------------------------------------- /utils/camelCase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/utils/camelCase.ts -------------------------------------------------------------------------------- /utils/fetcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/utils/fetcher.ts -------------------------------------------------------------------------------- /utils/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/utils/i18n.ts -------------------------------------------------------------------------------- /utils/sentry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/utils/sentry.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-next/HEAD/yarn.lock --------------------------------------------------------------------------------