├── .env ├── .env.development ├── .env.local ├── .env.production ├── .eslintrc.json ├── .github ├── dependabot.yml └── workflows │ └── lint.yml ├── .gitignore ├── .prettierrc ├── .vscode └── settings.json ├── README.md ├── components.json ├── global.d.ts ├── next.config.js ├── package.json ├── pnpm-lock.yaml ├── postcss.config.cjs ├── public ├── apple-touch-icon.png ├── favicon.ico ├── patterns │ ├── doodle.svg │ ├── memphis.svg │ └── triangles.svg └── static │ ├── icon-lg.png │ ├── icon-md.png │ ├── icon-sm.png │ ├── icon-xl.png │ ├── icon.png │ ├── logo-lg.png │ ├── logo-md.png │ ├── logo-sm.png │ ├── logo-xl.png │ └── logo.png ├── src ├── app │ ├── (api) │ │ ├── api │ │ │ ├── 404handler.ts │ │ │ ├── [...path] │ │ │ │ └── route.ts │ │ │ ├── auth │ │ │ │ ├── apikey │ │ │ │ │ └── route.ts │ │ │ │ ├── change-email │ │ │ │ │ └── route.ts │ │ │ │ ├── magic-link │ │ │ │ │ └── route.ts │ │ │ │ ├── passkey │ │ │ │ │ ├── authenticate │ │ │ │ │ │ └── route.ts │ │ │ │ │ ├── challenge │ │ │ │ │ │ └── route.ts │ │ │ │ │ └── register │ │ │ │ │ │ └── route.ts │ │ │ │ └── token │ │ │ │ │ └── route.ts │ │ │ ├── birthdate │ │ │ │ ├── change │ │ │ │ │ └── route.ts │ │ │ │ └── permit │ │ │ │ │ ├── route.ts │ │ │ │ │ └── validate │ │ │ │ │ └── route.ts │ │ │ ├── devkit │ │ │ │ └── [...path] │ │ │ │ │ └── route.ts │ │ │ ├── invite │ │ │ │ └── route.ts │ │ │ ├── picture │ │ │ │ └── route.ts │ │ │ └── route.ts │ │ ├── cdn │ │ │ └── s3 │ │ │ │ └── [...path] │ │ │ │ └── route.ts │ │ ├── config │ │ │ ├── auth.ts │ │ │ ├── env.ts │ │ │ └── shared_schemas.ts │ │ └── lib │ │ │ ├── debuglog.ts │ │ │ ├── email.ts │ │ │ ├── s3.ts │ │ │ ├── surreal.ts │ │ │ └── token.ts │ ├── [locale] │ │ ├── (console) │ │ │ ├── account │ │ │ │ ├── api-access │ │ │ │ │ └── page.tsx │ │ │ │ ├── layout.tsx │ │ │ │ ├── organisations │ │ │ │ │ └── page.tsx │ │ │ │ ├── page.tsx │ │ │ │ ├── passkeys │ │ │ │ │ └── page.tsx │ │ │ │ ├── registrations │ │ │ │ │ └── page.tsx │ │ │ │ └── teams │ │ │ │ │ └── page.tsx │ │ │ ├── console │ │ │ │ └── page.tsx │ │ │ ├── flow │ │ │ │ ├── event-signup │ │ │ │ │ └── [event] │ │ │ │ │ │ └── page.tsx │ │ │ │ └── layout.tsx │ │ │ ├── layout.tsx │ │ │ ├── organisation │ │ │ │ └── [organisation] │ │ │ │ │ ├── (container) │ │ │ │ │ ├── events │ │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── layout.tsx │ │ │ │ │ ├── members │ │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── organisations │ │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── overview │ │ │ │ │ │ └── page.tsx │ │ │ │ │ └── settings │ │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── components │ │ │ │ │ ├── PageTitle.tsx │ │ │ │ │ └── TinyOrgName.tsx │ │ │ │ │ ├── events │ │ │ │ │ └── [id] │ │ │ │ │ │ ├── [subpage] │ │ │ │ │ │ ├── attendees.tsx │ │ │ │ │ │ ├── events.tsx │ │ │ │ │ │ ├── overview.tsx │ │ │ │ │ │ ├── page.tsx │ │ │ │ │ │ └── settings.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ │ └── layout.tsx │ │ │ └── team │ │ │ │ └── [team] │ │ │ │ ├── (container) │ │ │ │ ├── layout.tsx │ │ │ │ ├── members │ │ │ │ │ └── page.tsx │ │ │ │ ├── overview │ │ │ │ │ └── page.tsx │ │ │ │ ├── registrations │ │ │ │ │ └── page.tsx │ │ │ │ └── settings │ │ │ │ │ └── page.tsx │ │ │ │ ├── components │ │ │ │ ├── PageTitle.tsx │ │ │ │ └── TinyTeamName.tsx │ │ │ │ └── layout.tsx │ │ ├── (public) │ │ │ ├── account │ │ │ │ ├── create-passkey │ │ │ │ │ └── page.tsx │ │ │ │ ├── create-profile │ │ │ │ │ └── page.tsx │ │ │ │ └── signin │ │ │ │ │ └── page.tsx │ │ │ ├── e │ │ │ │ └── [event] │ │ │ │ │ ├── manage │ │ │ │ │ └── [subpage] │ │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── page.tsx │ │ │ │ │ └── registration │ │ │ │ │ └── [id] │ │ │ │ │ └── page.tsx │ │ │ ├── layout.tsx │ │ │ ├── o │ │ │ │ └── [organisation] │ │ │ │ │ └── page.tsx │ │ │ ├── page.tsx │ │ │ └── test │ │ │ │ └── page.tsx │ │ ├── error.tsx │ │ ├── layout.tsx │ │ └── providers.tsx │ ├── globals.css │ └── layout.tsx ├── components │ ├── cards │ │ ├── avatar.tsx │ │ ├── banner.tsx │ │ └── profile.tsx │ ├── data │ │ ├── attends │ │ │ └── table.tsx │ │ ├── events │ │ │ ├── cards.tsx │ │ │ ├── create.tsx │ │ │ ├── editor.tsx │ │ │ ├── filters.tsx │ │ │ └── table.tsx │ │ ├── organisations │ │ │ ├── create.tsx │ │ │ └── table.tsx │ │ └── teams │ │ │ ├── create.tsx │ │ │ └── table.tsx │ ├── layout │ │ ├── Container.tsx │ │ ├── DevTools │ │ │ ├── emails.tsx │ │ │ ├── environment.tsx │ │ │ ├── index.tsx │ │ │ ├── migrate-database.tsx │ │ │ └── query.tsx │ │ ├── LoaderOverlay.tsx │ │ ├── NotFoundScreen.tsx │ │ └── navbar.tsx │ ├── logic │ │ ├── BirthdateSelector.tsx │ │ ├── DropdownMenuOptionalBoolean.tsx │ │ ├── EditorBox.tsx │ │ ├── EventSelector.tsx │ │ ├── LocationSelector.tsx │ │ ├── OrganisationSelector.tsx │ │ ├── Pagination.tsx │ │ ├── UploadImage.tsx │ │ ├── UserEmailSelector.tsx │ │ └── UserSelector.tsx │ ├── miscellaneous │ │ ├── CutTextTooltip.tsx │ │ ├── DateTooltip.tsx │ │ ├── Editor.tsx │ │ ├── Location.tsx │ │ ├── Markdown.tsx │ │ └── Role.tsx │ ├── modules │ │ └── EventModule.tsx │ ├── ui-custom │ │ └── dd.tsx │ └── ui │ │ ├── accordion.tsx │ │ ├── avatar.tsx │ │ ├── badge.tsx │ │ ├── breadcrumb.tsx │ │ ├── button.tsx │ │ ├── calendar.tsx │ │ ├── card.tsx │ │ ├── carousel.tsx │ │ ├── checkbox.tsx │ │ ├── command.tsx │ │ ├── datetime.tsx │ │ ├── dialog.tsx │ │ ├── drawer.tsx │ │ ├── dropdown-menu.tsx │ │ ├── form.tsx │ │ ├── input-otp.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── navigation-menu.tsx │ │ ├── popover.tsx │ │ ├── scroll-area.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── sheet.tsx │ │ ├── skeleton.tsx │ │ ├── sonner.tsx │ │ ├── table.tsx │ │ ├── tabs.tsx │ │ ├── textarea.tsx │ │ └── tooltip.tsx ├── config │ ├── Environment.ts │ └── site.ts ├── email_templates │ └── .gitkeep ├── emails │ ├── auth-change-email.tsx │ ├── auth-magic-link.tsx │ ├── auth-revert-change-email.tsx │ ├── birthdate-permit-email.tsx │ ├── organisation-invite.tsx │ └── team-invite.tsx ├── lib │ ├── Queries │ │ ├── Auth.ts │ │ ├── Event.ts │ │ ├── Organisation.ts │ │ ├── Team.ts │ │ └── User.ts │ ├── Surreal.tsx │ ├── auth.tsx │ ├── branding.ts │ ├── featureFlags.tsx │ ├── fonts.ts │ ├── image.ts │ ├── pattern.tsx │ ├── remToPx.ts │ ├── role.ts │ ├── scrolled.tsx │ ├── share.tsx │ ├── table.ts │ ├── textContent.ts │ ├── utilHooks.ts │ ├── utils.ts │ ├── webauthn.ts │ └── zod.ts ├── locales │ ├── de │ │ ├── common.json │ │ ├── components.json │ │ ├── constants.json │ │ ├── index.ts │ │ ├── languages.json │ │ └── pages.json │ ├── defaultTranslationValues.tsx │ ├── en │ │ ├── common.json │ │ ├── components.json │ │ ├── constants.json │ │ ├── index.ts │ │ ├── languages.json │ │ └── pages.json │ ├── index.ts │ ├── languages.ts │ ├── navigation.ts │ └── nl │ │ ├── common.json │ │ ├── components.json │ │ ├── constants.json │ │ ├── index.ts │ │ ├── languages.json │ │ └── pages.json ├── middleware.ts ├── schema │ ├── constants.ts │ ├── functions │ │ ├── log.ts │ │ ├── recursion.ts │ │ └── team.ts │ ├── index.ts │ ├── miscellaneous │ │ └── email.ts │ ├── relations │ │ ├── attends.ts │ │ ├── manages.ts │ │ └── plays_in.ts │ └── resources │ │ ├── actor.ts │ │ ├── auth.ts │ │ ├── birthdate_permit.ts │ │ ├── challenge.ts │ │ ├── credential.ts │ │ ├── event.ts │ │ ├── invite.ts │ │ ├── log.ts │ │ ├── organisation.ts │ │ ├── profile.ts │ │ ├── team.ts │ │ └── user.ts └── scripts │ ├── _migratetool.ts │ ├── devkit-routes │ ├── email.ts │ └── migrate-database.ts │ ├── devkit.ts │ └── predeploy.ts ├── tailwind.config.cjs └── tsconfig.json /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/.env -------------------------------------------------------------------------------- /.env.development: -------------------------------------------------------------------------------- 1 | NEXT_PUBLIC_ENV="dev" -------------------------------------------------------------------------------- /.env.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/.env.local -------------------------------------------------------------------------------- /.env.production: -------------------------------------------------------------------------------- 1 | NEXT_PUBLIC_ENV="prod" -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "files.exclude": {} 3 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/README.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/components.json -------------------------------------------------------------------------------- /global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/global.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/postcss.config.cjs -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/patterns/doodle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/public/patterns/doodle.svg -------------------------------------------------------------------------------- /public/patterns/memphis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/public/patterns/memphis.svg -------------------------------------------------------------------------------- /public/patterns/triangles.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/public/patterns/triangles.svg -------------------------------------------------------------------------------- /public/static/icon-lg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/public/static/icon-lg.png -------------------------------------------------------------------------------- /public/static/icon-md.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/public/static/icon-md.png -------------------------------------------------------------------------------- /public/static/icon-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/public/static/icon-sm.png -------------------------------------------------------------------------------- /public/static/icon-xl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/public/static/icon-xl.png -------------------------------------------------------------------------------- /public/static/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/public/static/icon.png -------------------------------------------------------------------------------- /public/static/logo-lg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/public/static/logo-lg.png -------------------------------------------------------------------------------- /public/static/logo-md.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/public/static/logo-md.png -------------------------------------------------------------------------------- /public/static/logo-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/public/static/logo-sm.png -------------------------------------------------------------------------------- /public/static/logo-xl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/public/static/logo-xl.png -------------------------------------------------------------------------------- /public/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/public/static/logo.png -------------------------------------------------------------------------------- /src/app/(api)/api/404handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/(api)/api/404handler.ts -------------------------------------------------------------------------------- /src/app/(api)/api/[...path]/route.ts: -------------------------------------------------------------------------------- 1 | export * from '../route'; 2 | -------------------------------------------------------------------------------- /src/app/(api)/api/auth/apikey/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/(api)/api/auth/apikey/route.ts -------------------------------------------------------------------------------- /src/app/(api)/api/auth/change-email/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/(api)/api/auth/change-email/route.ts -------------------------------------------------------------------------------- /src/app/(api)/api/auth/magic-link/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/(api)/api/auth/magic-link/route.ts -------------------------------------------------------------------------------- /src/app/(api)/api/auth/passkey/authenticate/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/(api)/api/auth/passkey/authenticate/route.ts -------------------------------------------------------------------------------- /src/app/(api)/api/auth/passkey/challenge/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/(api)/api/auth/passkey/challenge/route.ts -------------------------------------------------------------------------------- /src/app/(api)/api/auth/passkey/register/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/(api)/api/auth/passkey/register/route.ts -------------------------------------------------------------------------------- /src/app/(api)/api/auth/token/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/(api)/api/auth/token/route.ts -------------------------------------------------------------------------------- /src/app/(api)/api/birthdate/change/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/(api)/api/birthdate/change/route.ts -------------------------------------------------------------------------------- /src/app/(api)/api/birthdate/permit/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/(api)/api/birthdate/permit/route.ts -------------------------------------------------------------------------------- /src/app/(api)/api/birthdate/permit/validate/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/(api)/api/birthdate/permit/validate/route.ts -------------------------------------------------------------------------------- /src/app/(api)/api/devkit/[...path]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/(api)/api/devkit/[...path]/route.ts -------------------------------------------------------------------------------- /src/app/(api)/api/invite/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/(api)/api/invite/route.ts -------------------------------------------------------------------------------- /src/app/(api)/api/picture/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/(api)/api/picture/route.ts -------------------------------------------------------------------------------- /src/app/(api)/api/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/(api)/api/route.ts -------------------------------------------------------------------------------- /src/app/(api)/cdn/s3/[...path]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/(api)/cdn/s3/[...path]/route.ts -------------------------------------------------------------------------------- /src/app/(api)/config/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/(api)/config/auth.ts -------------------------------------------------------------------------------- /src/app/(api)/config/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/(api)/config/env.ts -------------------------------------------------------------------------------- /src/app/(api)/config/shared_schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/(api)/config/shared_schemas.ts -------------------------------------------------------------------------------- /src/app/(api)/lib/debuglog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/(api)/lib/debuglog.ts -------------------------------------------------------------------------------- /src/app/(api)/lib/email.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/(api)/lib/email.ts -------------------------------------------------------------------------------- /src/app/(api)/lib/s3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/(api)/lib/s3.ts -------------------------------------------------------------------------------- /src/app/(api)/lib/surreal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/(api)/lib/surreal.ts -------------------------------------------------------------------------------- /src/app/(api)/lib/token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/(api)/lib/token.ts -------------------------------------------------------------------------------- /src/app/[locale]/(console)/account/api-access/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/[locale]/(console)/account/api-access/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(console)/account/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/[locale]/(console)/account/layout.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(console)/account/organisations/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/[locale]/(console)/account/organisations/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(console)/account/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/[locale]/(console)/account/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(console)/account/passkeys/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/[locale]/(console)/account/passkeys/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(console)/account/registrations/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/[locale]/(console)/account/registrations/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(console)/account/teams/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/[locale]/(console)/account/teams/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(console)/console/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/[locale]/(console)/console/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(console)/flow/event-signup/[event]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/[locale]/(console)/flow/event-signup/[event]/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(console)/flow/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/[locale]/(console)/flow/layout.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(console)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/[locale]/(console)/layout.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(console)/organisation/[organisation]/(container)/events/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/[locale]/(console)/organisation/[organisation]/(container)/events/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(console)/organisation/[organisation]/(container)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/[locale]/(console)/organisation/[organisation]/(container)/layout.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(console)/organisation/[organisation]/(container)/members/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/[locale]/(console)/organisation/[organisation]/(container)/members/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(console)/organisation/[organisation]/(container)/organisations/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/[locale]/(console)/organisation/[organisation]/(container)/organisations/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(console)/organisation/[organisation]/(container)/overview/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/[locale]/(console)/organisation/[organisation]/(container)/overview/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(console)/organisation/[organisation]/(container)/settings/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/[locale]/(console)/organisation/[organisation]/(container)/settings/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(console)/organisation/[organisation]/components/PageTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/[locale]/(console)/organisation/[organisation]/components/PageTitle.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(console)/organisation/[organisation]/components/TinyOrgName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/[locale]/(console)/organisation/[organisation]/components/TinyOrgName.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(console)/organisation/[organisation]/events/[id]/[subpage]/attendees.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/[locale]/(console)/organisation/[organisation]/events/[id]/[subpage]/attendees.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(console)/organisation/[organisation]/events/[id]/[subpage]/events.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/[locale]/(console)/organisation/[organisation]/events/[id]/[subpage]/events.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(console)/organisation/[organisation]/events/[id]/[subpage]/overview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/[locale]/(console)/organisation/[organisation]/events/[id]/[subpage]/overview.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(console)/organisation/[organisation]/events/[id]/[subpage]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/[locale]/(console)/organisation/[organisation]/events/[id]/[subpage]/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(console)/organisation/[organisation]/events/[id]/[subpage]/settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/[locale]/(console)/organisation/[organisation]/events/[id]/[subpage]/settings.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(console)/organisation/[organisation]/events/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/[locale]/(console)/organisation/[organisation]/events/[id]/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(console)/organisation/[organisation]/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/[locale]/(console)/organisation/[organisation]/layout.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(console)/team/[team]/(container)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/[locale]/(console)/team/[team]/(container)/layout.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(console)/team/[team]/(container)/members/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/[locale]/(console)/team/[team]/(container)/members/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(console)/team/[team]/(container)/overview/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/[locale]/(console)/team/[team]/(container)/overview/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(console)/team/[team]/(container)/registrations/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/[locale]/(console)/team/[team]/(container)/registrations/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(console)/team/[team]/(container)/settings/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/[locale]/(console)/team/[team]/(container)/settings/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(console)/team/[team]/components/PageTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/[locale]/(console)/team/[team]/components/PageTitle.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(console)/team/[team]/components/TinyTeamName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/[locale]/(console)/team/[team]/components/TinyTeamName.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(console)/team/[team]/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/[locale]/(console)/team/[team]/layout.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(public)/account/create-passkey/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/[locale]/(public)/account/create-passkey/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(public)/account/create-profile/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/[locale]/(public)/account/create-profile/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(public)/account/signin/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/[locale]/(public)/account/signin/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(public)/e/[event]/manage/[subpage]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/[locale]/(public)/e/[event]/manage/[subpage]/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(public)/e/[event]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/[locale]/(public)/e/[event]/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(public)/e/[event]/registration/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/[locale]/(public)/e/[event]/registration/[id]/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(public)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/[locale]/(public)/layout.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(public)/o/[organisation]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/[locale]/(public)/o/[organisation]/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(public)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/[locale]/(public)/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(public)/test/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/[locale]/(public)/test/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/[locale]/error.tsx -------------------------------------------------------------------------------- /src/app/[locale]/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/[locale]/layout.tsx -------------------------------------------------------------------------------- /src/app/[locale]/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/[locale]/providers.tsx -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/components/cards/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/cards/avatar.tsx -------------------------------------------------------------------------------- /src/components/cards/banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/cards/banner.tsx -------------------------------------------------------------------------------- /src/components/cards/profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/cards/profile.tsx -------------------------------------------------------------------------------- /src/components/data/attends/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/data/attends/table.tsx -------------------------------------------------------------------------------- /src/components/data/events/cards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/data/events/cards.tsx -------------------------------------------------------------------------------- /src/components/data/events/create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/data/events/create.tsx -------------------------------------------------------------------------------- /src/components/data/events/editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/data/events/editor.tsx -------------------------------------------------------------------------------- /src/components/data/events/filters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/data/events/filters.tsx -------------------------------------------------------------------------------- /src/components/data/events/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/data/events/table.tsx -------------------------------------------------------------------------------- /src/components/data/organisations/create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/data/organisations/create.tsx -------------------------------------------------------------------------------- /src/components/data/organisations/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/data/organisations/table.tsx -------------------------------------------------------------------------------- /src/components/data/teams/create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/data/teams/create.tsx -------------------------------------------------------------------------------- /src/components/data/teams/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/data/teams/table.tsx -------------------------------------------------------------------------------- /src/components/layout/Container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/layout/Container.tsx -------------------------------------------------------------------------------- /src/components/layout/DevTools/emails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/layout/DevTools/emails.tsx -------------------------------------------------------------------------------- /src/components/layout/DevTools/environment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/layout/DevTools/environment.tsx -------------------------------------------------------------------------------- /src/components/layout/DevTools/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/layout/DevTools/index.tsx -------------------------------------------------------------------------------- /src/components/layout/DevTools/migrate-database.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/layout/DevTools/migrate-database.tsx -------------------------------------------------------------------------------- /src/components/layout/DevTools/query.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/layout/DevTools/query.tsx -------------------------------------------------------------------------------- /src/components/layout/LoaderOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/layout/LoaderOverlay.tsx -------------------------------------------------------------------------------- /src/components/layout/NotFoundScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/layout/NotFoundScreen.tsx -------------------------------------------------------------------------------- /src/components/layout/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/layout/navbar.tsx -------------------------------------------------------------------------------- /src/components/logic/BirthdateSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/logic/BirthdateSelector.tsx -------------------------------------------------------------------------------- /src/components/logic/DropdownMenuOptionalBoolean.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/logic/DropdownMenuOptionalBoolean.tsx -------------------------------------------------------------------------------- /src/components/logic/EditorBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/logic/EditorBox.tsx -------------------------------------------------------------------------------- /src/components/logic/EventSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/logic/EventSelector.tsx -------------------------------------------------------------------------------- /src/components/logic/LocationSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/logic/LocationSelector.tsx -------------------------------------------------------------------------------- /src/components/logic/OrganisationSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/logic/OrganisationSelector.tsx -------------------------------------------------------------------------------- /src/components/logic/Pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/logic/Pagination.tsx -------------------------------------------------------------------------------- /src/components/logic/UploadImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/logic/UploadImage.tsx -------------------------------------------------------------------------------- /src/components/logic/UserEmailSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/logic/UserEmailSelector.tsx -------------------------------------------------------------------------------- /src/components/logic/UserSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/logic/UserSelector.tsx -------------------------------------------------------------------------------- /src/components/miscellaneous/CutTextTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/miscellaneous/CutTextTooltip.tsx -------------------------------------------------------------------------------- /src/components/miscellaneous/DateTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/miscellaneous/DateTooltip.tsx -------------------------------------------------------------------------------- /src/components/miscellaneous/Editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/miscellaneous/Editor.tsx -------------------------------------------------------------------------------- /src/components/miscellaneous/Location.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/miscellaneous/Markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/miscellaneous/Markdown.tsx -------------------------------------------------------------------------------- /src/components/miscellaneous/Role.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/miscellaneous/Role.tsx -------------------------------------------------------------------------------- /src/components/modules/EventModule.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/modules/EventModule.tsx -------------------------------------------------------------------------------- /src/components/ui-custom/dd.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/ui-custom/dd.tsx -------------------------------------------------------------------------------- /src/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/ui/accordion.tsx -------------------------------------------------------------------------------- /src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /src/components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/ui/calendar.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/ui/carousel.tsx -------------------------------------------------------------------------------- /src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /src/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/ui/command.tsx -------------------------------------------------------------------------------- /src/components/ui/datetime.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/ui/datetime.tsx -------------------------------------------------------------------------------- /src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/ui/drawer.tsx -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/ui/form.tsx -------------------------------------------------------------------------------- /src/components/ui/input-otp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/ui/input-otp.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/ui/select.tsx -------------------------------------------------------------------------------- /src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /src/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/ui/sonner.tsx -------------------------------------------------------------------------------- /src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/ui/table.tsx -------------------------------------------------------------------------------- /src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /src/config/Environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/config/Environment.ts -------------------------------------------------------------------------------- /src/config/site.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/config/site.ts -------------------------------------------------------------------------------- /src/email_templates/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/emails/auth-change-email.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/emails/auth-change-email.tsx -------------------------------------------------------------------------------- /src/emails/auth-magic-link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/emails/auth-magic-link.tsx -------------------------------------------------------------------------------- /src/emails/auth-revert-change-email.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/emails/auth-revert-change-email.tsx -------------------------------------------------------------------------------- /src/emails/birthdate-permit-email.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/emails/birthdate-permit-email.tsx -------------------------------------------------------------------------------- /src/emails/organisation-invite.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/emails/organisation-invite.tsx -------------------------------------------------------------------------------- /src/emails/team-invite.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/emails/team-invite.tsx -------------------------------------------------------------------------------- /src/lib/Queries/Auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/lib/Queries/Auth.ts -------------------------------------------------------------------------------- /src/lib/Queries/Event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/lib/Queries/Event.ts -------------------------------------------------------------------------------- /src/lib/Queries/Organisation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/lib/Queries/Organisation.ts -------------------------------------------------------------------------------- /src/lib/Queries/Team.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/lib/Queries/Team.ts -------------------------------------------------------------------------------- /src/lib/Queries/User.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/lib/Queries/User.ts -------------------------------------------------------------------------------- /src/lib/Surreal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/lib/Surreal.tsx -------------------------------------------------------------------------------- /src/lib/auth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/lib/auth.tsx -------------------------------------------------------------------------------- /src/lib/branding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/lib/branding.ts -------------------------------------------------------------------------------- /src/lib/featureFlags.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/lib/featureFlags.tsx -------------------------------------------------------------------------------- /src/lib/fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/lib/fonts.ts -------------------------------------------------------------------------------- /src/lib/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/lib/image.ts -------------------------------------------------------------------------------- /src/lib/pattern.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/lib/pattern.tsx -------------------------------------------------------------------------------- /src/lib/remToPx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/lib/remToPx.ts -------------------------------------------------------------------------------- /src/lib/role.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/lib/role.ts -------------------------------------------------------------------------------- /src/lib/scrolled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/lib/scrolled.tsx -------------------------------------------------------------------------------- /src/lib/share.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/lib/share.tsx -------------------------------------------------------------------------------- /src/lib/table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/lib/table.ts -------------------------------------------------------------------------------- /src/lib/textContent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/lib/textContent.ts -------------------------------------------------------------------------------- /src/lib/utilHooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/lib/utilHooks.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/lib/webauthn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/lib/webauthn.ts -------------------------------------------------------------------------------- /src/lib/zod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/lib/zod.ts -------------------------------------------------------------------------------- /src/locales/de/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/locales/de/common.json -------------------------------------------------------------------------------- /src/locales/de/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/locales/de/components.json -------------------------------------------------------------------------------- /src/locales/de/constants.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/locales/de/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/locales/de/index.ts -------------------------------------------------------------------------------- /src/locales/de/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/locales/de/languages.json -------------------------------------------------------------------------------- /src/locales/de/pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/locales/de/pages.json -------------------------------------------------------------------------------- /src/locales/defaultTranslationValues.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/locales/defaultTranslationValues.tsx -------------------------------------------------------------------------------- /src/locales/en/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/locales/en/common.json -------------------------------------------------------------------------------- /src/locales/en/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/locales/en/components.json -------------------------------------------------------------------------------- /src/locales/en/constants.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/locales/en/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/locales/en/index.ts -------------------------------------------------------------------------------- /src/locales/en/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/locales/en/languages.json -------------------------------------------------------------------------------- /src/locales/en/pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/locales/en/pages.json -------------------------------------------------------------------------------- /src/locales/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/locales/index.ts -------------------------------------------------------------------------------- /src/locales/languages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/locales/languages.ts -------------------------------------------------------------------------------- /src/locales/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/locales/navigation.ts -------------------------------------------------------------------------------- /src/locales/nl/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/locales/nl/common.json -------------------------------------------------------------------------------- /src/locales/nl/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/locales/nl/components.json -------------------------------------------------------------------------------- /src/locales/nl/constants.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/locales/nl/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/locales/nl/index.ts -------------------------------------------------------------------------------- /src/locales/nl/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/locales/nl/languages.json -------------------------------------------------------------------------------- /src/locales/nl/pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/locales/nl/pages.json -------------------------------------------------------------------------------- /src/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/middleware.ts -------------------------------------------------------------------------------- /src/schema/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/schema/constants.ts -------------------------------------------------------------------------------- /src/schema/functions/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/schema/functions/log.ts -------------------------------------------------------------------------------- /src/schema/functions/recursion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/schema/functions/recursion.ts -------------------------------------------------------------------------------- /src/schema/functions/team.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/schema/functions/team.ts -------------------------------------------------------------------------------- /src/schema/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/schema/index.ts -------------------------------------------------------------------------------- /src/schema/miscellaneous/email.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/schema/miscellaneous/email.ts -------------------------------------------------------------------------------- /src/schema/relations/attends.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/schema/relations/attends.ts -------------------------------------------------------------------------------- /src/schema/relations/manages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/schema/relations/manages.ts -------------------------------------------------------------------------------- /src/schema/relations/plays_in.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/schema/relations/plays_in.ts -------------------------------------------------------------------------------- /src/schema/resources/actor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/schema/resources/actor.ts -------------------------------------------------------------------------------- /src/schema/resources/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/schema/resources/auth.ts -------------------------------------------------------------------------------- /src/schema/resources/birthdate_permit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/schema/resources/birthdate_permit.ts -------------------------------------------------------------------------------- /src/schema/resources/challenge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/schema/resources/challenge.ts -------------------------------------------------------------------------------- /src/schema/resources/credential.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/schema/resources/credential.ts -------------------------------------------------------------------------------- /src/schema/resources/event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/schema/resources/event.ts -------------------------------------------------------------------------------- /src/schema/resources/invite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/schema/resources/invite.ts -------------------------------------------------------------------------------- /src/schema/resources/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/schema/resources/log.ts -------------------------------------------------------------------------------- /src/schema/resources/organisation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/schema/resources/organisation.ts -------------------------------------------------------------------------------- /src/schema/resources/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/schema/resources/profile.ts -------------------------------------------------------------------------------- /src/schema/resources/team.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/schema/resources/team.ts -------------------------------------------------------------------------------- /src/schema/resources/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/schema/resources/user.ts -------------------------------------------------------------------------------- /src/scripts/_migratetool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/scripts/_migratetool.ts -------------------------------------------------------------------------------- /src/scripts/devkit-routes/email.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/scripts/devkit-routes/email.ts -------------------------------------------------------------------------------- /src/scripts/devkit-routes/migrate-database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/scripts/devkit-routes/migrate-database.ts -------------------------------------------------------------------------------- /src/scripts/devkit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/scripts/devkit.ts -------------------------------------------------------------------------------- /src/scripts/predeploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/src/scripts/predeploy.ts -------------------------------------------------------------------------------- /tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/tailwind.config.cjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/playrbase/HEAD/tsconfig.json --------------------------------------------------------------------------------