├── .editorconfig ├── .env.example ├── .eslintrc.json ├── .github └── workflows │ ├── app-staging.yml │ ├── app.yml │ ├── ci.yml │ ├── landing.yml │ ├── sentry-staging.yml │ └── sentry.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── LICENSE.md ├── README.md ├── apps ├── backend │ ├── .env.example │ ├── .eslintrc.json │ ├── jest.config.js │ ├── project.json │ ├── src │ │ ├── app.controller.ts │ │ ├── app.module.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── common │ │ │ ├── decorators │ │ │ │ ├── admin.decorator.ts │ │ │ │ ├── attendee.decorator.ts │ │ │ │ ├── organization.decorator.ts │ │ │ │ └── user.decorator.ts │ │ │ └── middleware │ │ │ │ └── user.middleware.ts │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── lib │ │ │ ├── pupeteer.ts │ │ │ └── utils.ts │ │ ├── main.ts │ │ ├── prisma.service.ts │ │ ├── resources │ │ │ ├── attendee │ │ │ │ ├── attendee.controller.ts │ │ │ │ ├── attendee.module.ts │ │ │ │ └── attendee.service.ts │ │ │ ├── aws │ │ │ │ ├── aws.controller.ts │ │ │ │ ├── aws.module.ts │ │ │ │ └── aws.service.ts │ │ │ ├── category │ │ │ │ ├── category.controller.ts │ │ │ │ ├── category.module.ts │ │ │ │ └── category.service.ts │ │ │ ├── event-team │ │ │ │ ├── event-team.controller.ts │ │ │ │ ├── event-team.module.ts │ │ │ │ └── event-team.service.ts │ │ │ ├── event │ │ │ │ ├── event.controller.ts │ │ │ │ ├── event.module.ts │ │ │ │ └── event.service.ts │ │ │ ├── organization │ │ │ │ ├── organization.controller.ts │ │ │ │ ├── organization.module.ts │ │ │ │ └── organization.service.ts │ │ │ ├── pdf │ │ │ │ ├── pdf.controller.ts │ │ │ │ ├── pdf.module.ts │ │ │ │ └── pdf.service.ts │ │ │ ├── question │ │ │ │ ├── question.controller.ts │ │ │ │ ├── question.module.ts │ │ │ │ └── question.service.ts │ │ │ ├── quiz-question │ │ │ │ ├── quiz-question.controller.ts │ │ │ │ ├── quiz-question.module.ts │ │ │ │ └── quiz-question.service.ts │ │ │ ├── quiz │ │ │ │ ├── quiz.controller.ts │ │ │ │ ├── quiz.module.ts │ │ │ │ └── quiz.service.ts │ │ │ ├── slide │ │ │ │ ├── slide.controller.ts │ │ │ │ ├── slide.module.ts │ │ │ │ └── slide.service.ts │ │ │ ├── team │ │ │ │ ├── team.controller.ts │ │ │ │ ├── team.module.ts │ │ │ │ └── team.service.ts │ │ │ └── user │ │ │ │ ├── user.controller.ts │ │ │ │ ├── user.module.ts │ │ │ │ └── user.service.ts │ │ └── types │ │ │ └── index.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ └── tsconfig.spec.json ├── frontend │ ├── .env.example │ ├── .eslintrc.json │ ├── assets │ │ ├── logo │ │ │ ├── qwiz-color-full.svg │ │ │ ├── qwiz-color.svg │ │ │ ├── qwiz-dark-full.svg │ │ │ ├── qwiz-dark.svg │ │ │ ├── qwiz-white-full.svg │ │ │ └── qwiz-white.svg │ │ └── peeps │ │ │ ├── hero │ │ │ ├── peep-hero-blank.svg │ │ │ ├── peep-hero-pastel.svg │ │ │ ├── peep-hero-user.svg │ │ │ ├── peep-hero.svg │ │ │ └── peeps.svg │ │ │ ├── org-page │ │ │ ├── peep-org-page-dark.svg │ │ │ └── peep-org-page.svg │ │ │ ├── role │ │ │ ├── peep-att.svg │ │ │ └── peep-org.svg │ │ │ ├── signin │ │ │ ├── peep-dark.svg │ │ │ ├── peep-verify.svg │ │ │ └── peep.svg │ │ │ ├── slide │ │ │ ├── peep-slide-dark.svg │ │ │ └── peep-slide.svg │ │ │ └── templates │ │ │ ├── peep-template1.svg │ │ │ ├── peep-template2.svg │ │ │ └── peep-template3.svg │ ├── components │ │ ├── Animation │ │ │ └── AnimatedWrapper.tsx │ │ ├── AppShell │ │ │ └── AppShell.tsx │ │ ├── Auth │ │ │ ├── AuthIllustration.tsx │ │ │ ├── AuthLogo.tsx │ │ │ ├── AuthProviders.tsx │ │ │ ├── AuthThemeToggle.tsx │ │ │ └── AuthTitle.tsx │ │ ├── Cards │ │ │ ├── event │ │ │ │ ├── EventBanner.tsx │ │ │ │ ├── EventCard.tsx │ │ │ │ ├── EventForm.tsx │ │ │ │ ├── HighlightedEventCard.tsx │ │ │ │ └── NoEventsAlert.tsx │ │ │ ├── quiz │ │ │ │ ├── NoQuizzesAlert.tsx │ │ │ │ ├── QuizCard.tsx │ │ │ │ ├── QuizCardMenu.tsx │ │ │ │ ├── QuizCardSmall.tsx │ │ │ │ ├── QuizNameEditInput.tsx │ │ │ │ └── use-quiz-slide-route.tsx │ │ │ └── use-card-styles.ts │ │ ├── Dashboard │ │ │ ├── DashboardAnalytics.tsx │ │ │ ├── DashboardEvents.tsx │ │ │ ├── DashboardHero.tsx │ │ │ ├── DashboardQwizStats.tsx │ │ │ ├── HeroIllustration.tsx │ │ │ └── OrganizationDashboard.tsx │ │ ├── Event │ │ │ ├── EventAdditionalInfo.tsx │ │ │ ├── EventApplyModal.tsx │ │ │ ├── EventAutocompleteItem.tsx │ │ │ ├── EventControls.tsx │ │ │ ├── EventDescription.tsx │ │ │ ├── EventHeader.tsx │ │ │ ├── EventMap.tsx │ │ │ ├── EventPage │ │ │ │ ├── EventsAny.tsx │ │ │ │ ├── EventsCurrentOrganization.tsx │ │ │ │ └── use-events-page.tsx │ │ │ ├── EventProfile.tsx │ │ │ ├── EventRichText.tsx │ │ │ ├── EventStat.tsx │ │ │ └── EventStats.tsx │ │ ├── Framer │ │ │ └── FramerAnimatedListItem.tsx │ │ ├── Grids │ │ │ └── PageGrid.tsx │ │ ├── Guard │ │ │ └── RoleGuard.tsx │ │ ├── Layouts │ │ │ ├── AuthLayout.tsx │ │ │ ├── DashboardLayout.tsx │ │ │ ├── PlayingLayout.tsx │ │ │ └── QuizLayout.tsx │ │ ├── Modals │ │ │ └── UserRoleModal │ │ │ │ ├── UserModalInfoCard.tsx │ │ │ │ ├── UserRoleCard.tsx │ │ │ │ ├── UserRoleModal.tsx │ │ │ │ ├── UserRoleModalStep1.tsx │ │ │ │ ├── UserRoleModalStep2.tsx │ │ │ │ └── use-user-role-modal.tsx │ │ ├── Nav │ │ │ ├── NavSearchItem.tsx │ │ │ ├── NavbarDivider.tsx │ │ │ ├── NavbarHeader.tsx │ │ │ ├── NavbarItem.tsx │ │ │ ├── NavbarList.tsx │ │ │ ├── NavbarLogo.tsx │ │ │ └── NavbarUser │ │ │ │ ├── NavbarUserButton.tsx │ │ │ │ └── NavbarUserMenu.tsx │ │ ├── Organization │ │ │ ├── OrganizationEvents.tsx │ │ │ └── OrganizationHeader.tsx │ │ ├── PageLayouts │ │ │ ├── HomepageLayout.tsx │ │ │ └── PageSection.tsx │ │ ├── Questions │ │ │ ├── QuestionTableRow.tsx │ │ │ └── QuestionsTable.tsx │ │ ├── Quiz │ │ │ ├── DraggableElement.tsx │ │ │ ├── EmptySlideAlert.tsx │ │ │ ├── MainSlide.tsx │ │ │ ├── OptionsSideBar.tsx │ │ │ ├── PdfExportWrapper.tsx │ │ │ ├── QuizQuestion │ │ │ │ ├── QuizQuestionCard.tsx │ │ │ │ ├── QuizQuestionCreateModal │ │ │ │ │ ├── AnswerFieldArray.tsx │ │ │ │ │ ├── CreateQuestionForm.tsx │ │ │ │ │ ├── ImageContentFieldArray.tsx │ │ │ │ │ ├── TextualContentFieldArray.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── SelectedQuestionModalContent.tsx │ │ │ │ └── use-selected-question.tsx │ │ │ ├── QuizRightSide.tsx │ │ │ ├── SidePanelQuestions.tsx │ │ │ ├── SidePanelSelectedQuestion.tsx │ │ │ ├── SidePanelSettings.tsx │ │ │ ├── SidePanelWrapper.tsx │ │ │ ├── SlidePreview.tsx │ │ │ ├── Slides.tsx │ │ │ ├── use-current-quiz.tsx │ │ │ └── use-current-slide.tsx │ │ ├── SEO │ │ │ └── Favicon.tsx │ │ ├── SpotlightControl │ │ │ └── SpotlightControl.tsx │ │ ├── Stats │ │ │ ├── StatsGroup.tsx │ │ │ └── StatsRing.tsx │ │ ├── Team │ │ │ ├── NoTeamsAlert.tsx │ │ │ ├── TeamAutocompleteItem.tsx │ │ │ ├── TeamCard.tsx │ │ │ └── TeamForm.tsx │ │ ├── UI │ │ │ ├── AvatarRoleIndicator.tsx │ │ │ ├── CustomDivider.tsx │ │ │ ├── FileUpload.tsx │ │ │ ├── FloatingQuizMenu.tsx │ │ │ ├── KbdShortcut.tsx │ │ │ ├── ProviderButton.tsx │ │ │ ├── ProviderEmail.tsx │ │ │ ├── ThemeToggle.tsx │ │ │ ├── ThinScrollArea.tsx │ │ │ ├── TooltipCopiedLink.tsx │ │ │ ├── UserProfileCard.tsx │ │ │ └── use-input-styles.tsx │ │ └── formik │ │ │ ├── ExampleForm.tsx │ │ │ ├── FormikAutocomplete.tsx │ │ │ ├── FormikCheckbox.tsx │ │ │ ├── FormikCheckboxGroup.tsx │ │ │ ├── FormikDatePicker.tsx │ │ │ ├── FormikMultiSelect.tsx │ │ │ ├── FormikNumberInput.tsx │ │ │ ├── FormikRadioGroup.tsx │ │ │ ├── FormikRichText.tsx │ │ │ ├── FormikSelect.tsx │ │ │ ├── FormikTextArea.tsx │ │ │ ├── FormikTextInput.tsx │ │ │ └── FormikTimeInput.tsx │ ├── context │ │ ├── colorscheme.tsx │ │ ├── mantine.tsx │ │ ├── spotlight.tsx │ │ └── theme.tsx │ ├── domain │ │ └── util │ │ │ └── validation.ts │ ├── hooks │ │ ├── api │ │ │ ├── attendees │ │ │ │ └── index.tsx │ │ │ ├── aws │ │ │ │ └── index.tsx │ │ │ ├── categories │ │ │ │ ├── index.tsx │ │ │ │ └── use-categories.tsx │ │ │ ├── events │ │ │ │ ├── index.tsx │ │ │ │ ├── use-event-create.tsx │ │ │ │ ├── use-event-delete.tsx │ │ │ │ ├── use-event-update.tsx │ │ │ │ ├── use-event.tsx │ │ │ │ └── use-events.tsx │ │ │ ├── organizations │ │ │ │ └── index.tsx │ │ │ ├── question │ │ │ │ ├── index.tsx │ │ │ │ ├── use-question-content-create.tsx │ │ │ │ ├── use-question-content-delete.tsx │ │ │ │ ├── use-question-create.tsx │ │ │ │ ├── use-question-delete.tsx │ │ │ │ ├── use-question-update.tsx │ │ │ │ ├── use-question.tsx │ │ │ │ └── use-questions.tsx │ │ │ ├── quiz-question │ │ │ │ ├── use-quiz-question-create.tsx │ │ │ │ └── use-quiz-question-update.tsx │ │ │ ├── quiz │ │ │ │ ├── index.tsx │ │ │ │ ├── use-quiz-create.tsx │ │ │ │ ├── use-quiz-delete.tsx │ │ │ │ ├── use-quiz-name-edit.tsx │ │ │ │ ├── use-quiz-update.tsx │ │ │ │ ├── use-quiz.tsx │ │ │ │ └── use-quizzes.tsx │ │ │ ├── role │ │ │ │ └── index.ts │ │ │ ├── session │ │ │ │ └── index.tsx │ │ │ ├── slide │ │ │ │ ├── index.tsx │ │ │ │ ├── use-slide-create.tsx │ │ │ │ ├── use-slide-delete.tsx │ │ │ │ ├── use-slide.tsx │ │ │ │ └── use-slides.tsx │ │ │ ├── teams │ │ │ │ ├── index.tsx │ │ │ │ ├── use-event-team-create.tsx │ │ │ │ ├── use-event-team-delete.tsx │ │ │ │ ├── use-team-create.tsx │ │ │ │ ├── use-team-delete.tsx │ │ │ │ ├── use-team-update.tsx │ │ │ │ ├── use-team.tsx │ │ │ │ └── use-teams.tsx │ │ │ └── users │ │ │ │ ├── index.tsx │ │ │ │ ├── use-current-user.tsx │ │ │ │ ├── use-user-delete.tsx │ │ │ │ ├── use-user.tsx │ │ │ │ └── use-users.tsx │ │ ├── breakpoints.tsx │ │ ├── colorscheme.tsx │ │ ├── plausible │ │ │ └── index.tsx │ │ ├── providers.tsx │ │ ├── use-apply-to-event-check.tsx │ │ ├── use-avatar-gen.tsx │ │ ├── use-background-color.tsx │ │ ├── use-create-event-check.tsx │ │ ├── use-delete-confirm-modal.tsx │ │ ├── use-draggable-element.tsx │ │ ├── use-flle-upload.tsx │ │ ├── use-generate-thumbnail.tsx │ │ ├── use-handle-create-quiz.tsx │ │ ├── use-nav-items.tsx │ │ ├── use-question-contents.tsx │ │ ├── use-sign-out.tsx │ │ ├── use-team-applied-events.tsx │ │ └── use-team-apply.tsx │ ├── index.d.ts │ ├── jest.config.js │ ├── lib │ │ ├── axios.ts │ │ ├── config.ts │ │ ├── email.ts │ │ ├── framer.ts │ │ ├── next-auth.ts │ │ ├── questions.ts │ │ ├── router.ts │ │ ├── routes.ts │ │ └── utils.ts │ ├── models │ │ └── colorscheme.ts │ ├── next-env.d.ts │ ├── next.config.js │ ├── pages │ │ ├── 404 │ │ │ └── index.tsx │ │ ├── _app.tsx │ │ ├── _document.tsx │ │ ├── _error.tsx │ │ ├── _middleware.ts │ │ ├── api │ │ │ ├── [...all].ts │ │ │ └── auth │ │ │ │ └── [...nextauth].ts │ │ ├── events │ │ │ ├── [eventId] │ │ │ │ ├── edit.tsx │ │ │ │ └── index.tsx │ │ │ ├── create.tsx │ │ │ └── index.tsx │ │ ├── explore.tsx │ │ ├── index.tsx │ │ ├── organization │ │ │ └── [organizationId].tsx │ │ ├── pdf │ │ │ └── [id].tsx │ │ ├── profile │ │ │ └── index.tsx │ │ ├── questions │ │ │ └── index.tsx │ │ ├── quiz │ │ │ ├── [quizId] │ │ │ │ └── [slideId].tsx │ │ │ └── index.tsx │ │ ├── signin │ │ │ └── index.tsx │ │ ├── teams │ │ │ ├── [teamId] │ │ │ │ └── edit.tsx │ │ │ ├── index.tsx │ │ │ └── new.tsx │ │ └── verify-request │ │ │ └── index.tsx │ ├── paths.ts │ ├── project.json │ ├── public │ │ ├── .gitkeep │ │ ├── assets │ │ │ └── images │ │ │ │ └── cover.png │ │ ├── favicon │ │ │ ├── android-icon-144x144.png │ │ │ ├── android-icon-192x192.png │ │ │ ├── android-icon-36x36.png │ │ │ ├── android-icon-48x48.png │ │ │ ├── android-icon-72x72.png │ │ │ ├── android-icon-96x96.png │ │ │ ├── apple-icon-114x114.png │ │ │ ├── apple-icon-120x120.png │ │ │ ├── apple-icon-144x144.png │ │ │ ├── apple-icon-152x152.png │ │ │ ├── apple-icon-180x180.png │ │ │ ├── apple-icon-57x57.png │ │ │ ├── apple-icon-60x60.png │ │ │ ├── apple-icon-72x72.png │ │ │ ├── apple-icon-76x76.png │ │ │ ├── apple-icon-precomposed.png │ │ │ ├── apple-icon.png │ │ │ ├── browserconfig.xml │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon-96x96.png │ │ │ ├── favicon.ico │ │ │ ├── manifest.json │ │ │ ├── ms-icon-144x144.png │ │ │ ├── ms-icon-150x150.png │ │ │ ├── ms-icon-310x310.png │ │ │ └── ms-icon-70x70.png │ │ └── fonts │ │ │ └── DisketMono │ │ │ ├── Disket-Mono-Bold.ttf │ │ │ └── Disket-Mono-Regular.ttf │ ├── sentry.client.config.js │ ├── sentry.properties │ ├── sentry.server.config.js │ ├── services │ │ ├── api │ │ │ ├── attendees.tsx │ │ │ ├── aws.tsx │ │ │ ├── categories.tsx │ │ │ ├── event-team.tsx │ │ │ ├── events.tsx │ │ │ ├── organizations.tsx │ │ │ ├── questions.tsx │ │ │ ├── quiz-question.tsx │ │ │ ├── quiz.tsx │ │ │ ├── slide.tsx │ │ │ ├── teams.tsx │ │ │ └── users.tsx │ │ ├── http │ │ │ ├── handlers.ts │ │ │ └── index.ts │ │ └── plausible │ │ │ └── index.tsx │ ├── specs │ │ └── .gitkeep │ ├── store │ │ ├── use-assign-role.tsx │ │ └── use-resend-email.tsx │ ├── styles │ │ ├── fonts.css │ │ ├── global.css │ │ └── reset.css │ ├── tsconfig.json │ ├── tsconfig.spec.json │ ├── types │ │ ├── api │ │ │ ├── atendee.ts │ │ │ ├── event.ts │ │ │ ├── organization.ts │ │ │ ├── question.ts │ │ │ ├── quiz.ts │ │ │ ├── role.ts │ │ │ ├── slide.ts │ │ │ └── teams.ts │ │ ├── elements │ │ │ └── nav-item.ts │ │ ├── forms │ │ │ ├── EventFormValues.ts │ │ │ ├── QuestionCreateFormValues.tsx │ │ │ └── TeamFormValues.ts │ │ └── next-auth.d.ts │ └── windi.config.ts └── landing │ ├── .eslintrc.json │ ├── assets │ └── qwiz-white.svg │ ├── components │ ├── AppTimeline │ │ └── AppTimeline.tsx │ ├── Countdown │ │ ├── Countdown.module.scss │ │ ├── Countdown.tsx │ │ └── index.ts │ ├── Nav.tsx │ └── SEO │ │ └── Favicon.tsx │ ├── hooks │ └── countdown.tsx │ ├── index.d.ts │ ├── jest.config.js │ ├── next-env.d.ts │ ├── next.config.js │ ├── pages │ ├── _app.tsx │ ├── _document.tsx │ └── index.tsx │ ├── project.json │ ├── public │ ├── .gitkeep │ ├── assets │ │ └── images │ │ │ └── cover.png │ ├── favicon │ │ ├── android-icon-144x144.png │ │ ├── android-icon-192x192.png │ │ ├── android-icon-36x36.png │ │ ├── android-icon-48x48.png │ │ ├── android-icon-72x72.png │ │ ├── android-icon-96x96.png │ │ ├── apple-icon-114x114.png │ │ ├── apple-icon-120x120.png │ │ ├── apple-icon-144x144.png │ │ ├── apple-icon-152x152.png │ │ ├── apple-icon-180x180.png │ │ ├── apple-icon-57x57.png │ │ ├── apple-icon-60x60.png │ │ ├── apple-icon-72x72.png │ │ ├── apple-icon-76x76.png │ │ ├── apple-icon-precomposed.png │ │ ├── apple-icon.png │ │ ├── browserconfig.xml │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon-96x96.png │ │ ├── favicon.ico │ │ ├── manifest.json │ │ ├── ms-icon-144x144.png │ │ ├── ms-icon-150x150.png │ │ ├── ms-icon-310x310.png │ │ └── ms-icon-70x70.png │ ├── fonts │ │ └── DisketMono │ │ │ ├── Disket-Mono-Bold.ttf │ │ │ └── Disket-Mono-Regular.ttf │ └── robots.txt │ ├── specs │ └── index.spec.tsx │ ├── styles │ ├── fonts.scss │ ├── index.module.scss │ ├── reset.scss │ └── styles.scss │ ├── tsconfig.json │ └── tsconfig.spec.json ├── babel.config.json ├── design.png ├── jest.config.js ├── jest.preset.js ├── libs └── .gitkeep ├── nx.json ├── package.json ├── prisma ├── migrations │ ├── 20220221162054_init │ │ └── migration.sql │ └── migration_lock.toml └── schema.prisma ├── tools ├── generators │ └── .gitkeep └── tsconfig.tools.json ├── tsconfig.base.json └── workspace.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- 1 | DATABASE_URL="planetscale db url" -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/app-staging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/.github/workflows/app-staging.yml -------------------------------------------------------------------------------- /.github/workflows/app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/.github/workflows/app.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/landing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/.github/workflows/landing.yml -------------------------------------------------------------------------------- /.github/workflows/sentry-staging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/.github/workflows/sentry-staging.yml -------------------------------------------------------------------------------- /.github/workflows/sentry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/.github/workflows/sentry.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/README.md -------------------------------------------------------------------------------- /apps/backend/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/.env.example -------------------------------------------------------------------------------- /apps/backend/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/.eslintrc.json -------------------------------------------------------------------------------- /apps/backend/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/jest.config.js -------------------------------------------------------------------------------- /apps/backend/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/project.json -------------------------------------------------------------------------------- /apps/backend/src/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/src/app.controller.ts -------------------------------------------------------------------------------- /apps/backend/src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/src/app.module.ts -------------------------------------------------------------------------------- /apps/backend/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/backend/src/common/decorators/admin.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/src/common/decorators/admin.decorator.ts -------------------------------------------------------------------------------- /apps/backend/src/common/decorators/attendee.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/src/common/decorators/attendee.decorator.ts -------------------------------------------------------------------------------- /apps/backend/src/common/decorators/organization.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/src/common/decorators/organization.decorator.ts -------------------------------------------------------------------------------- /apps/backend/src/common/decorators/user.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/src/common/decorators/user.decorator.ts -------------------------------------------------------------------------------- /apps/backend/src/common/middleware/user.middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/src/common/middleware/user.middleware.ts -------------------------------------------------------------------------------- /apps/backend/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | }; 4 | -------------------------------------------------------------------------------- /apps/backend/src/environments/environment.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: false, 3 | }; 4 | -------------------------------------------------------------------------------- /apps/backend/src/lib/pupeteer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/src/lib/pupeteer.ts -------------------------------------------------------------------------------- /apps/backend/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/src/lib/utils.ts -------------------------------------------------------------------------------- /apps/backend/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/src/main.ts -------------------------------------------------------------------------------- /apps/backend/src/prisma.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/src/prisma.service.ts -------------------------------------------------------------------------------- /apps/backend/src/resources/attendee/attendee.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/src/resources/attendee/attendee.controller.ts -------------------------------------------------------------------------------- /apps/backend/src/resources/attendee/attendee.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/src/resources/attendee/attendee.module.ts -------------------------------------------------------------------------------- /apps/backend/src/resources/attendee/attendee.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/src/resources/attendee/attendee.service.ts -------------------------------------------------------------------------------- /apps/backend/src/resources/aws/aws.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/src/resources/aws/aws.controller.ts -------------------------------------------------------------------------------- /apps/backend/src/resources/aws/aws.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/src/resources/aws/aws.module.ts -------------------------------------------------------------------------------- /apps/backend/src/resources/aws/aws.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/src/resources/aws/aws.service.ts -------------------------------------------------------------------------------- /apps/backend/src/resources/category/category.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/src/resources/category/category.controller.ts -------------------------------------------------------------------------------- /apps/backend/src/resources/category/category.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/src/resources/category/category.module.ts -------------------------------------------------------------------------------- /apps/backend/src/resources/category/category.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/src/resources/category/category.service.ts -------------------------------------------------------------------------------- /apps/backend/src/resources/event-team/event-team.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/src/resources/event-team/event-team.controller.ts -------------------------------------------------------------------------------- /apps/backend/src/resources/event-team/event-team.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/src/resources/event-team/event-team.module.ts -------------------------------------------------------------------------------- /apps/backend/src/resources/event-team/event-team.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/src/resources/event-team/event-team.service.ts -------------------------------------------------------------------------------- /apps/backend/src/resources/event/event.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/src/resources/event/event.controller.ts -------------------------------------------------------------------------------- /apps/backend/src/resources/event/event.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/src/resources/event/event.module.ts -------------------------------------------------------------------------------- /apps/backend/src/resources/event/event.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/src/resources/event/event.service.ts -------------------------------------------------------------------------------- /apps/backend/src/resources/organization/organization.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/src/resources/organization/organization.controller.ts -------------------------------------------------------------------------------- /apps/backend/src/resources/organization/organization.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/src/resources/organization/organization.module.ts -------------------------------------------------------------------------------- /apps/backend/src/resources/organization/organization.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/src/resources/organization/organization.service.ts -------------------------------------------------------------------------------- /apps/backend/src/resources/pdf/pdf.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/src/resources/pdf/pdf.controller.ts -------------------------------------------------------------------------------- /apps/backend/src/resources/pdf/pdf.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/src/resources/pdf/pdf.module.ts -------------------------------------------------------------------------------- /apps/backend/src/resources/pdf/pdf.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/src/resources/pdf/pdf.service.ts -------------------------------------------------------------------------------- /apps/backend/src/resources/question/question.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/src/resources/question/question.controller.ts -------------------------------------------------------------------------------- /apps/backend/src/resources/question/question.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/src/resources/question/question.module.ts -------------------------------------------------------------------------------- /apps/backend/src/resources/question/question.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/src/resources/question/question.service.ts -------------------------------------------------------------------------------- /apps/backend/src/resources/quiz-question/quiz-question.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/src/resources/quiz-question/quiz-question.controller.ts -------------------------------------------------------------------------------- /apps/backend/src/resources/quiz-question/quiz-question.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/src/resources/quiz-question/quiz-question.module.ts -------------------------------------------------------------------------------- /apps/backend/src/resources/quiz-question/quiz-question.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/src/resources/quiz-question/quiz-question.service.ts -------------------------------------------------------------------------------- /apps/backend/src/resources/quiz/quiz.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/src/resources/quiz/quiz.controller.ts -------------------------------------------------------------------------------- /apps/backend/src/resources/quiz/quiz.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/src/resources/quiz/quiz.module.ts -------------------------------------------------------------------------------- /apps/backend/src/resources/quiz/quiz.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/src/resources/quiz/quiz.service.ts -------------------------------------------------------------------------------- /apps/backend/src/resources/slide/slide.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/src/resources/slide/slide.controller.ts -------------------------------------------------------------------------------- /apps/backend/src/resources/slide/slide.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/src/resources/slide/slide.module.ts -------------------------------------------------------------------------------- /apps/backend/src/resources/slide/slide.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/src/resources/slide/slide.service.ts -------------------------------------------------------------------------------- /apps/backend/src/resources/team/team.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/src/resources/team/team.controller.ts -------------------------------------------------------------------------------- /apps/backend/src/resources/team/team.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/src/resources/team/team.module.ts -------------------------------------------------------------------------------- /apps/backend/src/resources/team/team.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/src/resources/team/team.service.ts -------------------------------------------------------------------------------- /apps/backend/src/resources/user/user.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/src/resources/user/user.controller.ts -------------------------------------------------------------------------------- /apps/backend/src/resources/user/user.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/src/resources/user/user.module.ts -------------------------------------------------------------------------------- /apps/backend/src/resources/user/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/src/resources/user/user.service.ts -------------------------------------------------------------------------------- /apps/backend/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/src/types/index.ts -------------------------------------------------------------------------------- /apps/backend/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/tsconfig.app.json -------------------------------------------------------------------------------- /apps/backend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/tsconfig.json -------------------------------------------------------------------------------- /apps/backend/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/backend/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/frontend/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/.env.example -------------------------------------------------------------------------------- /apps/frontend/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/.eslintrc.json -------------------------------------------------------------------------------- /apps/frontend/assets/logo/qwiz-color-full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/assets/logo/qwiz-color-full.svg -------------------------------------------------------------------------------- /apps/frontend/assets/logo/qwiz-color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/assets/logo/qwiz-color.svg -------------------------------------------------------------------------------- /apps/frontend/assets/logo/qwiz-dark-full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/assets/logo/qwiz-dark-full.svg -------------------------------------------------------------------------------- /apps/frontend/assets/logo/qwiz-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/assets/logo/qwiz-dark.svg -------------------------------------------------------------------------------- /apps/frontend/assets/logo/qwiz-white-full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/assets/logo/qwiz-white-full.svg -------------------------------------------------------------------------------- /apps/frontend/assets/logo/qwiz-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/assets/logo/qwiz-white.svg -------------------------------------------------------------------------------- /apps/frontend/assets/peeps/hero/peep-hero-blank.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/assets/peeps/hero/peep-hero-blank.svg -------------------------------------------------------------------------------- /apps/frontend/assets/peeps/hero/peep-hero-pastel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/assets/peeps/hero/peep-hero-pastel.svg -------------------------------------------------------------------------------- /apps/frontend/assets/peeps/hero/peep-hero-user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/assets/peeps/hero/peep-hero-user.svg -------------------------------------------------------------------------------- /apps/frontend/assets/peeps/hero/peep-hero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/assets/peeps/hero/peep-hero.svg -------------------------------------------------------------------------------- /apps/frontend/assets/peeps/hero/peeps.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/assets/peeps/hero/peeps.svg -------------------------------------------------------------------------------- /apps/frontend/assets/peeps/org-page/peep-org-page-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/assets/peeps/org-page/peep-org-page-dark.svg -------------------------------------------------------------------------------- /apps/frontend/assets/peeps/org-page/peep-org-page.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/assets/peeps/org-page/peep-org-page.svg -------------------------------------------------------------------------------- /apps/frontend/assets/peeps/role/peep-att.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/assets/peeps/role/peep-att.svg -------------------------------------------------------------------------------- /apps/frontend/assets/peeps/role/peep-org.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/assets/peeps/role/peep-org.svg -------------------------------------------------------------------------------- /apps/frontend/assets/peeps/signin/peep-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/assets/peeps/signin/peep-dark.svg -------------------------------------------------------------------------------- /apps/frontend/assets/peeps/signin/peep-verify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/assets/peeps/signin/peep-verify.svg -------------------------------------------------------------------------------- /apps/frontend/assets/peeps/signin/peep.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/assets/peeps/signin/peep.svg -------------------------------------------------------------------------------- /apps/frontend/assets/peeps/slide/peep-slide-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/assets/peeps/slide/peep-slide-dark.svg -------------------------------------------------------------------------------- /apps/frontend/assets/peeps/slide/peep-slide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/assets/peeps/slide/peep-slide.svg -------------------------------------------------------------------------------- /apps/frontend/assets/peeps/templates/peep-template1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/assets/peeps/templates/peep-template1.svg -------------------------------------------------------------------------------- /apps/frontend/assets/peeps/templates/peep-template2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/assets/peeps/templates/peep-template2.svg -------------------------------------------------------------------------------- /apps/frontend/assets/peeps/templates/peep-template3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/assets/peeps/templates/peep-template3.svg -------------------------------------------------------------------------------- /apps/frontend/components/Animation/AnimatedWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Animation/AnimatedWrapper.tsx -------------------------------------------------------------------------------- /apps/frontend/components/AppShell/AppShell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/AppShell/AppShell.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Auth/AuthIllustration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Auth/AuthIllustration.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Auth/AuthLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Auth/AuthLogo.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Auth/AuthProviders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Auth/AuthProviders.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Auth/AuthThemeToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Auth/AuthThemeToggle.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Auth/AuthTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Auth/AuthTitle.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Cards/event/EventBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Cards/event/EventBanner.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Cards/event/EventCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Cards/event/EventCard.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Cards/event/EventForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Cards/event/EventForm.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Cards/event/HighlightedEventCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Cards/event/HighlightedEventCard.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Cards/event/NoEventsAlert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Cards/event/NoEventsAlert.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Cards/quiz/NoQuizzesAlert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Cards/quiz/NoQuizzesAlert.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Cards/quiz/QuizCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Cards/quiz/QuizCard.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Cards/quiz/QuizCardMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Cards/quiz/QuizCardMenu.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Cards/quiz/QuizCardSmall.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Cards/quiz/QuizCardSmall.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Cards/quiz/QuizNameEditInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Cards/quiz/QuizNameEditInput.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Cards/quiz/use-quiz-slide-route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Cards/quiz/use-quiz-slide-route.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Cards/use-card-styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Cards/use-card-styles.ts -------------------------------------------------------------------------------- /apps/frontend/components/Dashboard/DashboardAnalytics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Dashboard/DashboardAnalytics.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Dashboard/DashboardEvents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Dashboard/DashboardEvents.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Dashboard/DashboardHero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Dashboard/DashboardHero.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Dashboard/DashboardQwizStats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Dashboard/DashboardQwizStats.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Dashboard/HeroIllustration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Dashboard/HeroIllustration.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Dashboard/OrganizationDashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Dashboard/OrganizationDashboard.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Event/EventAdditionalInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Event/EventAdditionalInfo.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Event/EventApplyModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Event/EventApplyModal.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Event/EventAutocompleteItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Event/EventAutocompleteItem.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Event/EventControls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Event/EventControls.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Event/EventDescription.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Event/EventDescription.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Event/EventHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Event/EventHeader.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Event/EventMap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Event/EventMap.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Event/EventPage/EventsAny.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Event/EventPage/EventsAny.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Event/EventPage/EventsCurrentOrganization.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Event/EventPage/EventsCurrentOrganization.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Event/EventPage/use-events-page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Event/EventPage/use-events-page.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Event/EventProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Event/EventProfile.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Event/EventRichText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Event/EventRichText.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Event/EventStat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Event/EventStat.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Event/EventStats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Event/EventStats.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Framer/FramerAnimatedListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Framer/FramerAnimatedListItem.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Grids/PageGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Grids/PageGrid.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Guard/RoleGuard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Guard/RoleGuard.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Layouts/AuthLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Layouts/AuthLayout.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Layouts/DashboardLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Layouts/DashboardLayout.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Layouts/PlayingLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Layouts/PlayingLayout.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Layouts/QuizLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Layouts/QuizLayout.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Modals/UserRoleModal/UserModalInfoCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Modals/UserRoleModal/UserModalInfoCard.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Modals/UserRoleModal/UserRoleCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Modals/UserRoleModal/UserRoleCard.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Modals/UserRoleModal/UserRoleModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Modals/UserRoleModal/UserRoleModal.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Modals/UserRoleModal/UserRoleModalStep1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Modals/UserRoleModal/UserRoleModalStep1.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Modals/UserRoleModal/UserRoleModalStep2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Modals/UserRoleModal/UserRoleModalStep2.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Modals/UserRoleModal/use-user-role-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Modals/UserRoleModal/use-user-role-modal.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Nav/NavSearchItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Nav/NavSearchItem.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Nav/NavbarDivider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Nav/NavbarDivider.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Nav/NavbarHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Nav/NavbarHeader.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Nav/NavbarItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Nav/NavbarItem.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Nav/NavbarList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Nav/NavbarList.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Nav/NavbarLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Nav/NavbarLogo.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Nav/NavbarUser/NavbarUserButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Nav/NavbarUser/NavbarUserButton.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Nav/NavbarUser/NavbarUserMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Nav/NavbarUser/NavbarUserMenu.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Organization/OrganizationEvents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Organization/OrganizationEvents.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Organization/OrganizationHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Organization/OrganizationHeader.tsx -------------------------------------------------------------------------------- /apps/frontend/components/PageLayouts/HomepageLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/PageLayouts/HomepageLayout.tsx -------------------------------------------------------------------------------- /apps/frontend/components/PageLayouts/PageSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/PageLayouts/PageSection.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Questions/QuestionTableRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Questions/QuestionTableRow.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Questions/QuestionsTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Questions/QuestionsTable.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Quiz/DraggableElement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Quiz/DraggableElement.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Quiz/EmptySlideAlert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Quiz/EmptySlideAlert.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Quiz/MainSlide.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Quiz/MainSlide.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Quiz/OptionsSideBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Quiz/OptionsSideBar.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Quiz/PdfExportWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Quiz/PdfExportWrapper.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Quiz/QuizQuestion/QuizQuestionCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Quiz/QuizQuestion/QuizQuestionCard.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Quiz/QuizQuestion/QuizQuestionCreateModal/AnswerFieldArray.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Quiz/QuizQuestion/QuizQuestionCreateModal/AnswerFieldArray.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Quiz/QuizQuestion/QuizQuestionCreateModal/CreateQuestionForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Quiz/QuizQuestion/QuizQuestionCreateModal/CreateQuestionForm.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Quiz/QuizQuestion/QuizQuestionCreateModal/ImageContentFieldArray.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Quiz/QuizQuestion/QuizQuestionCreateModal/ImageContentFieldArray.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Quiz/QuizQuestion/QuizQuestionCreateModal/TextualContentFieldArray.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Quiz/QuizQuestion/QuizQuestionCreateModal/TextualContentFieldArray.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Quiz/QuizQuestion/QuizQuestionCreateModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Quiz/QuizQuestion/QuizQuestionCreateModal/index.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Quiz/QuizQuestion/SelectedQuestionModalContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Quiz/QuizQuestion/SelectedQuestionModalContent.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Quiz/QuizQuestion/use-selected-question.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Quiz/QuizQuestion/use-selected-question.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Quiz/QuizRightSide.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Quiz/QuizRightSide.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Quiz/SidePanelQuestions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Quiz/SidePanelQuestions.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Quiz/SidePanelSelectedQuestion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Quiz/SidePanelSelectedQuestion.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Quiz/SidePanelSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Quiz/SidePanelSettings.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Quiz/SidePanelWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Quiz/SidePanelWrapper.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Quiz/SlidePreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Quiz/SlidePreview.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Quiz/Slides.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Quiz/Slides.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Quiz/use-current-quiz.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Quiz/use-current-quiz.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Quiz/use-current-slide.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Quiz/use-current-slide.tsx -------------------------------------------------------------------------------- /apps/frontend/components/SEO/Favicon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/SEO/Favicon.tsx -------------------------------------------------------------------------------- /apps/frontend/components/SpotlightControl/SpotlightControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/SpotlightControl/SpotlightControl.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Stats/StatsGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Stats/StatsGroup.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Stats/StatsRing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Stats/StatsRing.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Team/NoTeamsAlert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Team/NoTeamsAlert.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Team/TeamAutocompleteItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Team/TeamAutocompleteItem.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Team/TeamCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Team/TeamCard.tsx -------------------------------------------------------------------------------- /apps/frontend/components/Team/TeamForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/Team/TeamForm.tsx -------------------------------------------------------------------------------- /apps/frontend/components/UI/AvatarRoleIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/UI/AvatarRoleIndicator.tsx -------------------------------------------------------------------------------- /apps/frontend/components/UI/CustomDivider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/UI/CustomDivider.tsx -------------------------------------------------------------------------------- /apps/frontend/components/UI/FileUpload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/UI/FileUpload.tsx -------------------------------------------------------------------------------- /apps/frontend/components/UI/FloatingQuizMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/UI/FloatingQuizMenu.tsx -------------------------------------------------------------------------------- /apps/frontend/components/UI/KbdShortcut.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/UI/KbdShortcut.tsx -------------------------------------------------------------------------------- /apps/frontend/components/UI/ProviderButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/UI/ProviderButton.tsx -------------------------------------------------------------------------------- /apps/frontend/components/UI/ProviderEmail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/UI/ProviderEmail.tsx -------------------------------------------------------------------------------- /apps/frontend/components/UI/ThemeToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/UI/ThemeToggle.tsx -------------------------------------------------------------------------------- /apps/frontend/components/UI/ThinScrollArea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/UI/ThinScrollArea.tsx -------------------------------------------------------------------------------- /apps/frontend/components/UI/TooltipCopiedLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/UI/TooltipCopiedLink.tsx -------------------------------------------------------------------------------- /apps/frontend/components/UI/UserProfileCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/UI/UserProfileCard.tsx -------------------------------------------------------------------------------- /apps/frontend/components/UI/use-input-styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/UI/use-input-styles.tsx -------------------------------------------------------------------------------- /apps/frontend/components/formik/ExampleForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/formik/ExampleForm.tsx -------------------------------------------------------------------------------- /apps/frontend/components/formik/FormikAutocomplete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/formik/FormikAutocomplete.tsx -------------------------------------------------------------------------------- /apps/frontend/components/formik/FormikCheckbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/formik/FormikCheckbox.tsx -------------------------------------------------------------------------------- /apps/frontend/components/formik/FormikCheckboxGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/formik/FormikCheckboxGroup.tsx -------------------------------------------------------------------------------- /apps/frontend/components/formik/FormikDatePicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/formik/FormikDatePicker.tsx -------------------------------------------------------------------------------- /apps/frontend/components/formik/FormikMultiSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/formik/FormikMultiSelect.tsx -------------------------------------------------------------------------------- /apps/frontend/components/formik/FormikNumberInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/formik/FormikNumberInput.tsx -------------------------------------------------------------------------------- /apps/frontend/components/formik/FormikRadioGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/formik/FormikRadioGroup.tsx -------------------------------------------------------------------------------- /apps/frontend/components/formik/FormikRichText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/formik/FormikRichText.tsx -------------------------------------------------------------------------------- /apps/frontend/components/formik/FormikSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/formik/FormikSelect.tsx -------------------------------------------------------------------------------- /apps/frontend/components/formik/FormikTextArea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/formik/FormikTextArea.tsx -------------------------------------------------------------------------------- /apps/frontend/components/formik/FormikTextInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/formik/FormikTextInput.tsx -------------------------------------------------------------------------------- /apps/frontend/components/formik/FormikTimeInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/components/formik/FormikTimeInput.tsx -------------------------------------------------------------------------------- /apps/frontend/context/colorscheme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/context/colorscheme.tsx -------------------------------------------------------------------------------- /apps/frontend/context/mantine.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/context/mantine.tsx -------------------------------------------------------------------------------- /apps/frontend/context/spotlight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/context/spotlight.tsx -------------------------------------------------------------------------------- /apps/frontend/context/theme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/context/theme.tsx -------------------------------------------------------------------------------- /apps/frontend/domain/util/validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/domain/util/validation.ts -------------------------------------------------------------------------------- /apps/frontend/hooks/api/attendees/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/api/attendees/index.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/api/aws/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/api/aws/index.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/api/categories/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './use-categories'; 2 | -------------------------------------------------------------------------------- /apps/frontend/hooks/api/categories/use-categories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/api/categories/use-categories.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/api/events/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './use-events'; 2 | -------------------------------------------------------------------------------- /apps/frontend/hooks/api/events/use-event-create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/api/events/use-event-create.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/api/events/use-event-delete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/api/events/use-event-delete.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/api/events/use-event-update.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/api/events/use-event-update.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/api/events/use-event.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/api/events/use-event.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/api/events/use-events.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/api/events/use-events.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/api/organizations/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/api/organizations/index.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/api/question/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/api/question/index.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/api/question/use-question-content-create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/api/question/use-question-content-create.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/api/question/use-question-content-delete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/api/question/use-question-content-delete.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/api/question/use-question-create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/api/question/use-question-create.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/api/question/use-question-delete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/api/question/use-question-delete.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/api/question/use-question-update.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/api/question/use-question-update.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/api/question/use-question.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/api/question/use-question.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/api/question/use-questions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/api/question/use-questions.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/api/quiz-question/use-quiz-question-create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/api/quiz-question/use-quiz-question-create.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/api/quiz-question/use-quiz-question-update.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/api/quiz-question/use-quiz-question-update.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/api/quiz/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/api/quiz/index.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/api/quiz/use-quiz-create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/api/quiz/use-quiz-create.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/api/quiz/use-quiz-delete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/api/quiz/use-quiz-delete.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/api/quiz/use-quiz-name-edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/api/quiz/use-quiz-name-edit.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/api/quiz/use-quiz-update.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/api/quiz/use-quiz-update.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/api/quiz/use-quiz.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/api/quiz/use-quiz.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/api/quiz/use-quizzes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/api/quiz/use-quizzes.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/api/role/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/api/role/index.ts -------------------------------------------------------------------------------- /apps/frontend/hooks/api/session/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/api/session/index.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/api/slide/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/api/slide/index.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/api/slide/use-slide-create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/api/slide/use-slide-create.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/api/slide/use-slide-delete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/api/slide/use-slide-delete.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/api/slide/use-slide.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/api/slide/use-slide.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/api/slide/use-slides.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/api/slide/use-slides.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/api/teams/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/api/teams/index.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/api/teams/use-event-team-create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/api/teams/use-event-team-create.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/api/teams/use-event-team-delete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/api/teams/use-event-team-delete.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/api/teams/use-team-create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/api/teams/use-team-create.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/api/teams/use-team-delete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/api/teams/use-team-delete.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/api/teams/use-team-update.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/api/teams/use-team-update.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/api/teams/use-team.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/api/teams/use-team.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/api/teams/use-teams.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/api/teams/use-teams.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/api/users/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/api/users/index.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/api/users/use-current-user.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/api/users/use-current-user.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/api/users/use-user-delete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/api/users/use-user-delete.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/api/users/use-user.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/api/users/use-user.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/api/users/use-users.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/api/users/use-users.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/breakpoints.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/breakpoints.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/colorscheme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/colorscheme.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/plausible/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/plausible/index.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/providers.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/use-apply-to-event-check.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/use-apply-to-event-check.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/use-avatar-gen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/use-avatar-gen.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/use-background-color.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/use-background-color.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/use-create-event-check.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/use-create-event-check.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/use-delete-confirm-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/use-delete-confirm-modal.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/use-draggable-element.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/use-draggable-element.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/use-flle-upload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/use-flle-upload.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/use-generate-thumbnail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/use-generate-thumbnail.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/use-handle-create-quiz.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/use-handle-create-quiz.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/use-nav-items.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/use-nav-items.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/use-question-contents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/use-question-contents.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/use-sign-out.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/use-sign-out.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/use-team-applied-events.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/use-team-applied-events.tsx -------------------------------------------------------------------------------- /apps/frontend/hooks/use-team-apply.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/hooks/use-team-apply.tsx -------------------------------------------------------------------------------- /apps/frontend/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/index.d.ts -------------------------------------------------------------------------------- /apps/frontend/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/jest.config.js -------------------------------------------------------------------------------- /apps/frontend/lib/axios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/lib/axios.ts -------------------------------------------------------------------------------- /apps/frontend/lib/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/lib/config.ts -------------------------------------------------------------------------------- /apps/frontend/lib/email.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/lib/email.ts -------------------------------------------------------------------------------- /apps/frontend/lib/framer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/lib/framer.ts -------------------------------------------------------------------------------- /apps/frontend/lib/next-auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/lib/next-auth.ts -------------------------------------------------------------------------------- /apps/frontend/lib/questions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/lib/questions.ts -------------------------------------------------------------------------------- /apps/frontend/lib/router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/lib/router.ts -------------------------------------------------------------------------------- /apps/frontend/lib/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/lib/routes.ts -------------------------------------------------------------------------------- /apps/frontend/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/lib/utils.ts -------------------------------------------------------------------------------- /apps/frontend/models/colorscheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/models/colorscheme.ts -------------------------------------------------------------------------------- /apps/frontend/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/next-env.d.ts -------------------------------------------------------------------------------- /apps/frontend/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/next.config.js -------------------------------------------------------------------------------- /apps/frontend/pages/404/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/pages/404/index.tsx -------------------------------------------------------------------------------- /apps/frontend/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/pages/_app.tsx -------------------------------------------------------------------------------- /apps/frontend/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/pages/_document.tsx -------------------------------------------------------------------------------- /apps/frontend/pages/_error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/pages/_error.tsx -------------------------------------------------------------------------------- /apps/frontend/pages/_middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/pages/_middleware.ts -------------------------------------------------------------------------------- /apps/frontend/pages/api/[...all].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/pages/api/[...all].ts -------------------------------------------------------------------------------- /apps/frontend/pages/api/auth/[...nextauth].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/pages/api/auth/[...nextauth].ts -------------------------------------------------------------------------------- /apps/frontend/pages/events/[eventId]/edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/pages/events/[eventId]/edit.tsx -------------------------------------------------------------------------------- /apps/frontend/pages/events/[eventId]/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/pages/events/[eventId]/index.tsx -------------------------------------------------------------------------------- /apps/frontend/pages/events/create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/pages/events/create.tsx -------------------------------------------------------------------------------- /apps/frontend/pages/events/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/pages/events/index.tsx -------------------------------------------------------------------------------- /apps/frontend/pages/explore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/pages/explore.tsx -------------------------------------------------------------------------------- /apps/frontend/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/pages/index.tsx -------------------------------------------------------------------------------- /apps/frontend/pages/organization/[organizationId].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/pages/organization/[organizationId].tsx -------------------------------------------------------------------------------- /apps/frontend/pages/pdf/[id].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/pages/pdf/[id].tsx -------------------------------------------------------------------------------- /apps/frontend/pages/profile/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/pages/profile/index.tsx -------------------------------------------------------------------------------- /apps/frontend/pages/questions/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/pages/questions/index.tsx -------------------------------------------------------------------------------- /apps/frontend/pages/quiz/[quizId]/[slideId].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/pages/quiz/[quizId]/[slideId].tsx -------------------------------------------------------------------------------- /apps/frontend/pages/quiz/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/pages/quiz/index.tsx -------------------------------------------------------------------------------- /apps/frontend/pages/signin/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/pages/signin/index.tsx -------------------------------------------------------------------------------- /apps/frontend/pages/teams/[teamId]/edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/pages/teams/[teamId]/edit.tsx -------------------------------------------------------------------------------- /apps/frontend/pages/teams/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/pages/teams/index.tsx -------------------------------------------------------------------------------- /apps/frontend/pages/teams/new.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/pages/teams/new.tsx -------------------------------------------------------------------------------- /apps/frontend/pages/verify-request/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/pages/verify-request/index.tsx -------------------------------------------------------------------------------- /apps/frontend/paths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/paths.ts -------------------------------------------------------------------------------- /apps/frontend/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/project.json -------------------------------------------------------------------------------- /apps/frontend/public/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/frontend/public/assets/images/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/public/assets/images/cover.png -------------------------------------------------------------------------------- /apps/frontend/public/favicon/android-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/public/favicon/android-icon-144x144.png -------------------------------------------------------------------------------- /apps/frontend/public/favicon/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/public/favicon/android-icon-192x192.png -------------------------------------------------------------------------------- /apps/frontend/public/favicon/android-icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/public/favicon/android-icon-36x36.png -------------------------------------------------------------------------------- /apps/frontend/public/favicon/android-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/public/favicon/android-icon-48x48.png -------------------------------------------------------------------------------- /apps/frontend/public/favicon/android-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/public/favicon/android-icon-72x72.png -------------------------------------------------------------------------------- /apps/frontend/public/favicon/android-icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/public/favicon/android-icon-96x96.png -------------------------------------------------------------------------------- /apps/frontend/public/favicon/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/public/favicon/apple-icon-114x114.png -------------------------------------------------------------------------------- /apps/frontend/public/favicon/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/public/favicon/apple-icon-120x120.png -------------------------------------------------------------------------------- /apps/frontend/public/favicon/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/public/favicon/apple-icon-144x144.png -------------------------------------------------------------------------------- /apps/frontend/public/favicon/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/public/favicon/apple-icon-152x152.png -------------------------------------------------------------------------------- /apps/frontend/public/favicon/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/public/favicon/apple-icon-180x180.png -------------------------------------------------------------------------------- /apps/frontend/public/favicon/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/public/favicon/apple-icon-57x57.png -------------------------------------------------------------------------------- /apps/frontend/public/favicon/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/public/favicon/apple-icon-60x60.png -------------------------------------------------------------------------------- /apps/frontend/public/favicon/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/public/favicon/apple-icon-72x72.png -------------------------------------------------------------------------------- /apps/frontend/public/favicon/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/public/favicon/apple-icon-76x76.png -------------------------------------------------------------------------------- /apps/frontend/public/favicon/apple-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/public/favicon/apple-icon-precomposed.png -------------------------------------------------------------------------------- /apps/frontend/public/favicon/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/public/favicon/apple-icon.png -------------------------------------------------------------------------------- /apps/frontend/public/favicon/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/public/favicon/browserconfig.xml -------------------------------------------------------------------------------- /apps/frontend/public/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/public/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /apps/frontend/public/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/public/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /apps/frontend/public/favicon/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/public/favicon/favicon-96x96.png -------------------------------------------------------------------------------- /apps/frontend/public/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/public/favicon/favicon.ico -------------------------------------------------------------------------------- /apps/frontend/public/favicon/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/public/favicon/manifest.json -------------------------------------------------------------------------------- /apps/frontend/public/favicon/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/public/favicon/ms-icon-144x144.png -------------------------------------------------------------------------------- /apps/frontend/public/favicon/ms-icon-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/public/favicon/ms-icon-150x150.png -------------------------------------------------------------------------------- /apps/frontend/public/favicon/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/public/favicon/ms-icon-310x310.png -------------------------------------------------------------------------------- /apps/frontend/public/favicon/ms-icon-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/public/favicon/ms-icon-70x70.png -------------------------------------------------------------------------------- /apps/frontend/public/fonts/DisketMono/Disket-Mono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/public/fonts/DisketMono/Disket-Mono-Bold.ttf -------------------------------------------------------------------------------- /apps/frontend/public/fonts/DisketMono/Disket-Mono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/public/fonts/DisketMono/Disket-Mono-Regular.ttf -------------------------------------------------------------------------------- /apps/frontend/sentry.client.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/sentry.client.config.js -------------------------------------------------------------------------------- /apps/frontend/sentry.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/sentry.properties -------------------------------------------------------------------------------- /apps/frontend/sentry.server.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/sentry.server.config.js -------------------------------------------------------------------------------- /apps/frontend/services/api/attendees.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/services/api/attendees.tsx -------------------------------------------------------------------------------- /apps/frontend/services/api/aws.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/services/api/aws.tsx -------------------------------------------------------------------------------- /apps/frontend/services/api/categories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/services/api/categories.tsx -------------------------------------------------------------------------------- /apps/frontend/services/api/event-team.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/services/api/event-team.tsx -------------------------------------------------------------------------------- /apps/frontend/services/api/events.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/services/api/events.tsx -------------------------------------------------------------------------------- /apps/frontend/services/api/organizations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/services/api/organizations.tsx -------------------------------------------------------------------------------- /apps/frontend/services/api/questions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/services/api/questions.tsx -------------------------------------------------------------------------------- /apps/frontend/services/api/quiz-question.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/services/api/quiz-question.tsx -------------------------------------------------------------------------------- /apps/frontend/services/api/quiz.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/services/api/quiz.tsx -------------------------------------------------------------------------------- /apps/frontend/services/api/slide.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/services/api/slide.tsx -------------------------------------------------------------------------------- /apps/frontend/services/api/teams.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/services/api/teams.tsx -------------------------------------------------------------------------------- /apps/frontend/services/api/users.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/services/api/users.tsx -------------------------------------------------------------------------------- /apps/frontend/services/http/handlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/services/http/handlers.ts -------------------------------------------------------------------------------- /apps/frontend/services/http/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/services/http/index.ts -------------------------------------------------------------------------------- /apps/frontend/services/plausible/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/services/plausible/index.tsx -------------------------------------------------------------------------------- /apps/frontend/specs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/frontend/store/use-assign-role.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/store/use-assign-role.tsx -------------------------------------------------------------------------------- /apps/frontend/store/use-resend-email.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/store/use-resend-email.tsx -------------------------------------------------------------------------------- /apps/frontend/styles/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/styles/fonts.css -------------------------------------------------------------------------------- /apps/frontend/styles/global.css: -------------------------------------------------------------------------------- 1 | ::selection { 2 | background: #ffd8a8; /* orange[2] */ 3 | color: #e8590c; 4 | } 5 | -------------------------------------------------------------------------------- /apps/frontend/styles/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/styles/reset.css -------------------------------------------------------------------------------- /apps/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/tsconfig.json -------------------------------------------------------------------------------- /apps/frontend/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/frontend/types/api/atendee.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/types/api/atendee.ts -------------------------------------------------------------------------------- /apps/frontend/types/api/event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/types/api/event.ts -------------------------------------------------------------------------------- /apps/frontend/types/api/organization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/types/api/organization.ts -------------------------------------------------------------------------------- /apps/frontend/types/api/question.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/types/api/question.ts -------------------------------------------------------------------------------- /apps/frontend/types/api/quiz.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/types/api/quiz.ts -------------------------------------------------------------------------------- /apps/frontend/types/api/role.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/types/api/role.ts -------------------------------------------------------------------------------- /apps/frontend/types/api/slide.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/types/api/slide.ts -------------------------------------------------------------------------------- /apps/frontend/types/api/teams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/types/api/teams.ts -------------------------------------------------------------------------------- /apps/frontend/types/elements/nav-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/types/elements/nav-item.ts -------------------------------------------------------------------------------- /apps/frontend/types/forms/EventFormValues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/types/forms/EventFormValues.ts -------------------------------------------------------------------------------- /apps/frontend/types/forms/QuestionCreateFormValues.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/types/forms/QuestionCreateFormValues.tsx -------------------------------------------------------------------------------- /apps/frontend/types/forms/TeamFormValues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/types/forms/TeamFormValues.ts -------------------------------------------------------------------------------- /apps/frontend/types/next-auth.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/types/next-auth.d.ts -------------------------------------------------------------------------------- /apps/frontend/windi.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/frontend/windi.config.ts -------------------------------------------------------------------------------- /apps/landing/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/landing/.eslintrc.json -------------------------------------------------------------------------------- /apps/landing/assets/qwiz-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/landing/assets/qwiz-white.svg -------------------------------------------------------------------------------- /apps/landing/components/AppTimeline/AppTimeline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/landing/components/AppTimeline/AppTimeline.tsx -------------------------------------------------------------------------------- /apps/landing/components/Countdown/Countdown.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/landing/components/Countdown/Countdown.module.scss -------------------------------------------------------------------------------- /apps/landing/components/Countdown/Countdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/landing/components/Countdown/Countdown.tsx -------------------------------------------------------------------------------- /apps/landing/components/Countdown/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/landing/components/Countdown/index.ts -------------------------------------------------------------------------------- /apps/landing/components/Nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/landing/components/Nav.tsx -------------------------------------------------------------------------------- /apps/landing/components/SEO/Favicon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/landing/components/SEO/Favicon.tsx -------------------------------------------------------------------------------- /apps/landing/hooks/countdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/landing/hooks/countdown.tsx -------------------------------------------------------------------------------- /apps/landing/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/landing/index.d.ts -------------------------------------------------------------------------------- /apps/landing/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/landing/jest.config.js -------------------------------------------------------------------------------- /apps/landing/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/landing/next-env.d.ts -------------------------------------------------------------------------------- /apps/landing/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/landing/next.config.js -------------------------------------------------------------------------------- /apps/landing/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/landing/pages/_app.tsx -------------------------------------------------------------------------------- /apps/landing/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/landing/pages/_document.tsx -------------------------------------------------------------------------------- /apps/landing/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/landing/pages/index.tsx -------------------------------------------------------------------------------- /apps/landing/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/landing/project.json -------------------------------------------------------------------------------- /apps/landing/public/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/landing/public/assets/images/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/landing/public/assets/images/cover.png -------------------------------------------------------------------------------- /apps/landing/public/favicon/android-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/landing/public/favicon/android-icon-144x144.png -------------------------------------------------------------------------------- /apps/landing/public/favicon/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/landing/public/favicon/android-icon-192x192.png -------------------------------------------------------------------------------- /apps/landing/public/favicon/android-icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/landing/public/favicon/android-icon-36x36.png -------------------------------------------------------------------------------- /apps/landing/public/favicon/android-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/landing/public/favicon/android-icon-48x48.png -------------------------------------------------------------------------------- /apps/landing/public/favicon/android-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/landing/public/favicon/android-icon-72x72.png -------------------------------------------------------------------------------- /apps/landing/public/favicon/android-icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/landing/public/favicon/android-icon-96x96.png -------------------------------------------------------------------------------- /apps/landing/public/favicon/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/landing/public/favicon/apple-icon-114x114.png -------------------------------------------------------------------------------- /apps/landing/public/favicon/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/landing/public/favicon/apple-icon-120x120.png -------------------------------------------------------------------------------- /apps/landing/public/favicon/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/landing/public/favicon/apple-icon-144x144.png -------------------------------------------------------------------------------- /apps/landing/public/favicon/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/landing/public/favicon/apple-icon-152x152.png -------------------------------------------------------------------------------- /apps/landing/public/favicon/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/landing/public/favicon/apple-icon-180x180.png -------------------------------------------------------------------------------- /apps/landing/public/favicon/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/landing/public/favicon/apple-icon-57x57.png -------------------------------------------------------------------------------- /apps/landing/public/favicon/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/landing/public/favicon/apple-icon-60x60.png -------------------------------------------------------------------------------- /apps/landing/public/favicon/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/landing/public/favicon/apple-icon-72x72.png -------------------------------------------------------------------------------- /apps/landing/public/favicon/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/landing/public/favicon/apple-icon-76x76.png -------------------------------------------------------------------------------- /apps/landing/public/favicon/apple-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/landing/public/favicon/apple-icon-precomposed.png -------------------------------------------------------------------------------- /apps/landing/public/favicon/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/landing/public/favicon/apple-icon.png -------------------------------------------------------------------------------- /apps/landing/public/favicon/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/landing/public/favicon/browserconfig.xml -------------------------------------------------------------------------------- /apps/landing/public/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/landing/public/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /apps/landing/public/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/landing/public/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /apps/landing/public/favicon/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/landing/public/favicon/favicon-96x96.png -------------------------------------------------------------------------------- /apps/landing/public/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/landing/public/favicon/favicon.ico -------------------------------------------------------------------------------- /apps/landing/public/favicon/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/landing/public/favicon/manifest.json -------------------------------------------------------------------------------- /apps/landing/public/favicon/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/landing/public/favicon/ms-icon-144x144.png -------------------------------------------------------------------------------- /apps/landing/public/favicon/ms-icon-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/landing/public/favicon/ms-icon-150x150.png -------------------------------------------------------------------------------- /apps/landing/public/favicon/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/landing/public/favicon/ms-icon-310x310.png -------------------------------------------------------------------------------- /apps/landing/public/favicon/ms-icon-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/landing/public/favicon/ms-icon-70x70.png -------------------------------------------------------------------------------- /apps/landing/public/fonts/DisketMono/Disket-Mono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/landing/public/fonts/DisketMono/Disket-Mono-Bold.ttf -------------------------------------------------------------------------------- /apps/landing/public/fonts/DisketMono/Disket-Mono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/landing/public/fonts/DisketMono/Disket-Mono-Regular.ttf -------------------------------------------------------------------------------- /apps/landing/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-Agent: * 2 | Allow: / -------------------------------------------------------------------------------- /apps/landing/specs/index.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/landing/specs/index.spec.tsx -------------------------------------------------------------------------------- /apps/landing/styles/fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/landing/styles/fonts.scss -------------------------------------------------------------------------------- /apps/landing/styles/index.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/landing/styles/index.module.scss -------------------------------------------------------------------------------- /apps/landing/styles/reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/landing/styles/reset.scss -------------------------------------------------------------------------------- /apps/landing/styles/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/landing/styles/styles.scss -------------------------------------------------------------------------------- /apps/landing/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/landing/tsconfig.json -------------------------------------------------------------------------------- /apps/landing/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/apps/landing/tsconfig.spec.json -------------------------------------------------------------------------------- /babel.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "babelrcRoots": ["*"] 3 | } 4 | -------------------------------------------------------------------------------- /design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/design.png -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/jest.config.js -------------------------------------------------------------------------------- /jest.preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/jest.preset.js -------------------------------------------------------------------------------- /libs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/nx.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/package.json -------------------------------------------------------------------------------- /prisma/migrations/20220221162054_init/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/prisma/migrations/20220221162054_init/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/migration_lock.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/prisma/migrations/migration_lock.toml -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /tools/generators/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/tsconfig.tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/tools/tsconfig.tools.json -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/tsconfig.base.json -------------------------------------------------------------------------------- /workspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiz-app/qwiz/HEAD/workspace.json --------------------------------------------------------------------------------