├── .envrc ├── .eslintrc.json ├── .github └── workflows │ └── lint.yml ├── .gitignore ├── .node-version ├── .prettierrc ├── .storybook ├── main.js └── preview.js ├── LICENSE ├── README.md ├── admin ├── App.tsx ├── Auth.tsx ├── Fetcher.ts ├── Surreal.tsx └── resources │ ├── Admin.tsx │ ├── Environment.tsx │ ├── Event.tsx │ ├── User.tsx │ └── Waitlist.tsx ├── assets └── image │ ├── Logo.svg │ └── example.jpg ├── cli ├── _migratetool.mjs └── predeploy.mjs ├── components ├── Button.tsx ├── Common │ ├── Image.tsx │ └── ProfilePicture.tsx ├── DevButton.tsx ├── Form │ └── InputField.tsx ├── IAmRoot.tsx ├── Icon │ ├── ArrowBack.tsx │ ├── Cross.tsx │ ├── IconBase.tsx │ ├── Info.tsx │ └── Spinner.tsx ├── Layout │ ├── Account │ │ ├── SidebarItem.tsx │ │ └── index.tsx │ ├── ContentMiddle.tsx │ ├── Navbar │ │ ├── DropdownRenderer.tsx │ │ ├── IconDropdown.tsx │ │ ├── ImageDropdown.tsx │ │ └── index.tsx │ └── index.tsx ├── Logo.tsx ├── Modal │ ├── Variants │ │ ├── ChangeProfilePictureModal.tsx │ │ └── SigninModal.tsx │ └── index.tsx ├── Post │ └── index.tsx └── Toggle.tsx ├── constants ├── AccountSidebar.ts ├── Colors.ts ├── Errors.ts ├── KeypressValidators │ └── username.ts └── Types │ ├── Admin.types.ts │ ├── Common.types.ts │ ├── FeatureFlags.types.ts │ ├── Form.types.ts │ ├── Image.types.ts │ ├── KardsUser.types.ts │ ├── Page.types.ts │ └── Svg.types.ts ├── devbox.json ├── email_templates ├── reset_password.html └── waitlist.html ├── hooks ├── Environment.tsx ├── FieldValidation │ └── password.tsx ├── Queries │ └── Auth.ts └── Surreal.tsx ├── lib ├── Environment.ts ├── ImageUpload.ts ├── KardsUser.ts ├── KeypressValidation.ts ├── ProcessDatabaseRecord.ts └── Surreal.ts ├── locales ├── en-US │ ├── common.json │ ├── components.json │ ├── constants.json │ ├── hooks.json │ ├── index.ts │ └── pages.json ├── index.ts └── nl-NL │ ├── common.json │ ├── components.json │ ├── constants.json │ ├── hooks.json │ ├── index.ts │ └── pages.json ├── next-sitemap.config.js ├── next.config.js ├── package.json ├── pages ├── _app.tsx ├── account │ ├── index.tsx │ ├── privacy.tsx │ └── security.tsx ├── admin.tsx ├── auth │ ├── reset-password.tsx │ └── signin.tsx ├── dev │ ├── _layout.tsx │ ├── admin.dev.tsx │ ├── index.dev.tsx │ ├── migrate-database.dev.tsx │ └── query.dev.tsx ├── index.tsx └── join-waitlist.tsx ├── pnpm-lock.yaml ├── public ├── Logo.png ├── Logo.svg ├── LogoSmall.png ├── LogoSmall.svg ├── app.webmanifest ├── favicon.ico └── images │ ├── example.jpg │ ├── icon_128x128.png │ ├── icon_192x192.png │ ├── icon_256x256.png │ ├── icon_512x512.png │ └── icon_64x64.png ├── stories └── components │ ├── Button.stories.tsx │ ├── Modal.stories.tsx │ └── Post.stories.tsx ├── styles ├── _color.scss ├── components │ ├── Button.module.scss │ ├── IAmRoot.module.scss │ ├── Modal.module.scss │ ├── Post.module.scss │ ├── Toggle.module.scss │ ├── form │ │ └── InputField.module.scss │ ├── layout │ │ ├── Account.module.scss │ │ ├── App │ │ │ ├── Navbar.module.scss │ │ │ ├── NavbarDropdown.module.scss │ │ │ └── NavbarIconDropdown.module.scss │ │ └── ContentMiddle.module.scss │ └── modal │ │ ├── ChangeProfilePicture.module.scss │ │ └── Signin.module.scss ├── globals.scss └── pages │ ├── Account │ └── Profile.module.scss │ ├── Auth │ ├── ResetPassword.module.scss │ └── Signin.module.scss │ ├── JoinWaitlist.module.scss │ └── Landing.module.scss ├── tables ├── admin.surql ├── auth.surql ├── create_image.surql ├── email_templates.surql ├── email_verification.surql ├── environment.surql ├── event.surql ├── image.surql ├── send_email.surql ├── user.surql └── waitlist.surql └── tsconfig.json /.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/.envrc -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/.gitignore -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 16.16.0 -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/.prettierrc -------------------------------------------------------------------------------- /.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/.storybook/main.js -------------------------------------------------------------------------------- /.storybook/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/.storybook/preview.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/README.md -------------------------------------------------------------------------------- /admin/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/admin/App.tsx -------------------------------------------------------------------------------- /admin/Auth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/admin/Auth.tsx -------------------------------------------------------------------------------- /admin/Fetcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/admin/Fetcher.ts -------------------------------------------------------------------------------- /admin/Surreal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/admin/Surreal.tsx -------------------------------------------------------------------------------- /admin/resources/Admin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/admin/resources/Admin.tsx -------------------------------------------------------------------------------- /admin/resources/Environment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/admin/resources/Environment.tsx -------------------------------------------------------------------------------- /admin/resources/Event.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/admin/resources/Event.tsx -------------------------------------------------------------------------------- /admin/resources/User.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/admin/resources/User.tsx -------------------------------------------------------------------------------- /admin/resources/Waitlist.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/admin/resources/Waitlist.tsx -------------------------------------------------------------------------------- /assets/image/Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/assets/image/Logo.svg -------------------------------------------------------------------------------- /assets/image/example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/assets/image/example.jpg -------------------------------------------------------------------------------- /cli/_migratetool.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/cli/_migratetool.mjs -------------------------------------------------------------------------------- /cli/predeploy.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/cli/predeploy.mjs -------------------------------------------------------------------------------- /components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/components/Button.tsx -------------------------------------------------------------------------------- /components/Common/Image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/components/Common/Image.tsx -------------------------------------------------------------------------------- /components/Common/ProfilePicture.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/components/Common/ProfilePicture.tsx -------------------------------------------------------------------------------- /components/DevButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/components/DevButton.tsx -------------------------------------------------------------------------------- /components/Form/InputField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/components/Form/InputField.tsx -------------------------------------------------------------------------------- /components/IAmRoot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/components/IAmRoot.tsx -------------------------------------------------------------------------------- /components/Icon/ArrowBack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/components/Icon/ArrowBack.tsx -------------------------------------------------------------------------------- /components/Icon/Cross.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/components/Icon/Cross.tsx -------------------------------------------------------------------------------- /components/Icon/IconBase.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/components/Icon/IconBase.tsx -------------------------------------------------------------------------------- /components/Icon/Info.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/components/Icon/Info.tsx -------------------------------------------------------------------------------- /components/Icon/Spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/components/Icon/Spinner.tsx -------------------------------------------------------------------------------- /components/Layout/Account/SidebarItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/components/Layout/Account/SidebarItem.tsx -------------------------------------------------------------------------------- /components/Layout/Account/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/components/Layout/Account/index.tsx -------------------------------------------------------------------------------- /components/Layout/ContentMiddle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/components/Layout/ContentMiddle.tsx -------------------------------------------------------------------------------- /components/Layout/Navbar/DropdownRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/components/Layout/Navbar/DropdownRenderer.tsx -------------------------------------------------------------------------------- /components/Layout/Navbar/IconDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/components/Layout/Navbar/IconDropdown.tsx -------------------------------------------------------------------------------- /components/Layout/Navbar/ImageDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/components/Layout/Navbar/ImageDropdown.tsx -------------------------------------------------------------------------------- /components/Layout/Navbar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/components/Layout/Navbar/index.tsx -------------------------------------------------------------------------------- /components/Layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/components/Layout/index.tsx -------------------------------------------------------------------------------- /components/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/components/Logo.tsx -------------------------------------------------------------------------------- /components/Modal/Variants/ChangeProfilePictureModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/components/Modal/Variants/ChangeProfilePictureModal.tsx -------------------------------------------------------------------------------- /components/Modal/Variants/SigninModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/components/Modal/Variants/SigninModal.tsx -------------------------------------------------------------------------------- /components/Modal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/components/Modal/index.tsx -------------------------------------------------------------------------------- /components/Post/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/components/Post/index.tsx -------------------------------------------------------------------------------- /components/Toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/components/Toggle.tsx -------------------------------------------------------------------------------- /constants/AccountSidebar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/constants/AccountSidebar.ts -------------------------------------------------------------------------------- /constants/Colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/constants/Colors.ts -------------------------------------------------------------------------------- /constants/Errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/constants/Errors.ts -------------------------------------------------------------------------------- /constants/KeypressValidators/username.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/constants/KeypressValidators/username.ts -------------------------------------------------------------------------------- /constants/Types/Admin.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/constants/Types/Admin.types.ts -------------------------------------------------------------------------------- /constants/Types/Common.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/constants/Types/Common.types.ts -------------------------------------------------------------------------------- /constants/Types/FeatureFlags.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/constants/Types/FeatureFlags.types.ts -------------------------------------------------------------------------------- /constants/Types/Form.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/constants/Types/Form.types.ts -------------------------------------------------------------------------------- /constants/Types/Image.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/constants/Types/Image.types.ts -------------------------------------------------------------------------------- /constants/Types/KardsUser.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/constants/Types/KardsUser.types.ts -------------------------------------------------------------------------------- /constants/Types/Page.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/constants/Types/Page.types.ts -------------------------------------------------------------------------------- /constants/Types/Svg.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/constants/Types/Svg.types.ts -------------------------------------------------------------------------------- /devbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/devbox.json -------------------------------------------------------------------------------- /email_templates/reset_password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/email_templates/reset_password.html -------------------------------------------------------------------------------- /email_templates/waitlist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/email_templates/waitlist.html -------------------------------------------------------------------------------- /hooks/Environment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/hooks/Environment.tsx -------------------------------------------------------------------------------- /hooks/FieldValidation/password.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/hooks/FieldValidation/password.tsx -------------------------------------------------------------------------------- /hooks/Queries/Auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/hooks/Queries/Auth.ts -------------------------------------------------------------------------------- /hooks/Surreal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/hooks/Surreal.tsx -------------------------------------------------------------------------------- /lib/Environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/lib/Environment.ts -------------------------------------------------------------------------------- /lib/ImageUpload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/lib/ImageUpload.ts -------------------------------------------------------------------------------- /lib/KardsUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/lib/KardsUser.ts -------------------------------------------------------------------------------- /lib/KeypressValidation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/lib/KeypressValidation.ts -------------------------------------------------------------------------------- /lib/ProcessDatabaseRecord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/lib/ProcessDatabaseRecord.ts -------------------------------------------------------------------------------- /lib/Surreal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/lib/Surreal.ts -------------------------------------------------------------------------------- /locales/en-US/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/locales/en-US/common.json -------------------------------------------------------------------------------- /locales/en-US/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/locales/en-US/components.json -------------------------------------------------------------------------------- /locales/en-US/constants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/locales/en-US/constants.json -------------------------------------------------------------------------------- /locales/en-US/hooks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/locales/en-US/hooks.json -------------------------------------------------------------------------------- /locales/en-US/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/locales/en-US/index.ts -------------------------------------------------------------------------------- /locales/en-US/pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/locales/en-US/pages.json -------------------------------------------------------------------------------- /locales/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/locales/index.ts -------------------------------------------------------------------------------- /locales/nl-NL/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/locales/nl-NL/common.json -------------------------------------------------------------------------------- /locales/nl-NL/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/locales/nl-NL/components.json -------------------------------------------------------------------------------- /locales/nl-NL/constants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/locales/nl-NL/constants.json -------------------------------------------------------------------------------- /locales/nl-NL/hooks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/locales/nl-NL/hooks.json -------------------------------------------------------------------------------- /locales/nl-NL/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/locales/nl-NL/index.ts -------------------------------------------------------------------------------- /locales/nl-NL/pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/locales/nl-NL/pages.json -------------------------------------------------------------------------------- /next-sitemap.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/next-sitemap.config.js -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/account/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/pages/account/index.tsx -------------------------------------------------------------------------------- /pages/account/privacy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/pages/account/privacy.tsx -------------------------------------------------------------------------------- /pages/account/security.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/pages/account/security.tsx -------------------------------------------------------------------------------- /pages/admin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/pages/admin.tsx -------------------------------------------------------------------------------- /pages/auth/reset-password.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/pages/auth/reset-password.tsx -------------------------------------------------------------------------------- /pages/auth/signin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/pages/auth/signin.tsx -------------------------------------------------------------------------------- /pages/dev/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/pages/dev/_layout.tsx -------------------------------------------------------------------------------- /pages/dev/admin.dev.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/pages/dev/admin.dev.tsx -------------------------------------------------------------------------------- /pages/dev/index.dev.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/pages/dev/index.dev.tsx -------------------------------------------------------------------------------- /pages/dev/migrate-database.dev.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/pages/dev/migrate-database.dev.tsx -------------------------------------------------------------------------------- /pages/dev/query.dev.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/pages/dev/query.dev.tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /pages/join-waitlist.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/pages/join-waitlist.tsx -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /public/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/public/Logo.png -------------------------------------------------------------------------------- /public/Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/public/Logo.svg -------------------------------------------------------------------------------- /public/LogoSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/public/LogoSmall.png -------------------------------------------------------------------------------- /public/LogoSmall.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/public/LogoSmall.svg -------------------------------------------------------------------------------- /public/app.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/public/app.webmanifest -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/images/example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/public/images/example.jpg -------------------------------------------------------------------------------- /public/images/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/public/images/icon_128x128.png -------------------------------------------------------------------------------- /public/images/icon_192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/public/images/icon_192x192.png -------------------------------------------------------------------------------- /public/images/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/public/images/icon_256x256.png -------------------------------------------------------------------------------- /public/images/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/public/images/icon_512x512.png -------------------------------------------------------------------------------- /public/images/icon_64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/public/images/icon_64x64.png -------------------------------------------------------------------------------- /stories/components/Button.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/stories/components/Button.stories.tsx -------------------------------------------------------------------------------- /stories/components/Modal.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/stories/components/Modal.stories.tsx -------------------------------------------------------------------------------- /stories/components/Post.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/stories/components/Post.stories.tsx -------------------------------------------------------------------------------- /styles/_color.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/styles/_color.scss -------------------------------------------------------------------------------- /styles/components/Button.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/styles/components/Button.module.scss -------------------------------------------------------------------------------- /styles/components/IAmRoot.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/styles/components/IAmRoot.module.scss -------------------------------------------------------------------------------- /styles/components/Modal.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/styles/components/Modal.module.scss -------------------------------------------------------------------------------- /styles/components/Post.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/styles/components/Post.module.scss -------------------------------------------------------------------------------- /styles/components/Toggle.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/styles/components/Toggle.module.scss -------------------------------------------------------------------------------- /styles/components/form/InputField.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/styles/components/form/InputField.module.scss -------------------------------------------------------------------------------- /styles/components/layout/Account.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/styles/components/layout/Account.module.scss -------------------------------------------------------------------------------- /styles/components/layout/App/Navbar.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/styles/components/layout/App/Navbar.module.scss -------------------------------------------------------------------------------- /styles/components/layout/App/NavbarDropdown.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/styles/components/layout/App/NavbarDropdown.module.scss -------------------------------------------------------------------------------- /styles/components/layout/App/NavbarIconDropdown.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/styles/components/layout/App/NavbarIconDropdown.module.scss -------------------------------------------------------------------------------- /styles/components/layout/ContentMiddle.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/styles/components/layout/ContentMiddle.module.scss -------------------------------------------------------------------------------- /styles/components/modal/ChangeProfilePicture.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/styles/components/modal/ChangeProfilePicture.module.scss -------------------------------------------------------------------------------- /styles/components/modal/Signin.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/styles/components/modal/Signin.module.scss -------------------------------------------------------------------------------- /styles/globals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/styles/globals.scss -------------------------------------------------------------------------------- /styles/pages/Account/Profile.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/styles/pages/Account/Profile.module.scss -------------------------------------------------------------------------------- /styles/pages/Auth/ResetPassword.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/styles/pages/Auth/ResetPassword.module.scss -------------------------------------------------------------------------------- /styles/pages/Auth/Signin.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/styles/pages/Auth/Signin.module.scss -------------------------------------------------------------------------------- /styles/pages/JoinWaitlist.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/styles/pages/JoinWaitlist.module.scss -------------------------------------------------------------------------------- /styles/pages/Landing.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/styles/pages/Landing.module.scss -------------------------------------------------------------------------------- /tables/admin.surql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/tables/admin.surql -------------------------------------------------------------------------------- /tables/auth.surql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/tables/auth.surql -------------------------------------------------------------------------------- /tables/create_image.surql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/tables/create_image.surql -------------------------------------------------------------------------------- /tables/email_templates.surql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/tables/email_templates.surql -------------------------------------------------------------------------------- /tables/email_verification.surql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/tables/email_verification.surql -------------------------------------------------------------------------------- /tables/environment.surql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/tables/environment.surql -------------------------------------------------------------------------------- /tables/event.surql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/tables/event.surql -------------------------------------------------------------------------------- /tables/image.surql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/tables/image.surql -------------------------------------------------------------------------------- /tables/send_email.surql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/tables/send_email.surql -------------------------------------------------------------------------------- /tables/user.surql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/tables/user.surql -------------------------------------------------------------------------------- /tables/waitlist.surql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/tables/waitlist.surql -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopensource-company/kards-social/HEAD/tsconfig.json --------------------------------------------------------------------------------