├── CODEOWNERS ├── LICENSE ├── README.md ├── client ├── .env.TEMPLATE ├── .gitignore ├── .vscode │ ├── extensions.json │ └── launch.json ├── astro.config.mjs ├── package-lock.json ├── package.json ├── public │ └── favicon.svg ├── src │ ├── env.d.ts │ ├── images │ │ ├── app-screenshot.png │ │ ├── squircle-logo-purple.png │ │ └── squircle-logo.png │ ├── layouts │ │ ├── base.astro │ │ └── marketing.astro │ ├── pages │ │ ├── dashboard │ │ │ └── [...all].astro │ │ └── index.astro │ └── react │ │ ├── app.module.css │ │ ├── app.tsx │ │ └── components │ │ ├── avatar.module.css │ │ ├── avatar.tsx │ │ ├── button.module.css │ │ ├── button.tsx │ │ ├── header.tsx │ │ ├── idea.module.css │ │ ├── idea.tsx │ │ ├── pages.module.css │ │ ├── pages.tsx │ │ └── trash-icon.tsx └── tsconfig.json ├── doc ├── Stytch-B2B-app-prebuilt.png ├── dashboard-stytch-admin-idea-config.png ├── dashboard-stytch-member-idea-config.png └── dashboard-stytch-resources.jpg └── server ├── .env.TEMPLATE ├── .gitignore ├── .nvmrc ├── api └── routes.ts ├── auth ├── index.ts └── routes.ts ├── db ├── README.md ├── index.ts ├── schema.ts └── squircle-demo.db ├── drizzle.config.ts ├── package-lock.json ├── package.json ├── src └── index.ts └── tsconfig.json /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-b2b-saas-pre-built-ui-example/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-b2b-saas-pre-built-ui-example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-b2b-saas-pre-built-ui-example/HEAD/README.md -------------------------------------------------------------------------------- /client/.env.TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-b2b-saas-pre-built-ui-example/HEAD/client/.env.TEMPLATE -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-b2b-saas-pre-built-ui-example/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-b2b-saas-pre-built-ui-example/HEAD/client/.vscode/extensions.json -------------------------------------------------------------------------------- /client/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-b2b-saas-pre-built-ui-example/HEAD/client/.vscode/launch.json -------------------------------------------------------------------------------- /client/astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-b2b-saas-pre-built-ui-example/HEAD/client/astro.config.mjs -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-b2b-saas-pre-built-ui-example/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-b2b-saas-pre-built-ui-example/HEAD/client/package.json -------------------------------------------------------------------------------- /client/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-b2b-saas-pre-built-ui-example/HEAD/client/public/favicon.svg -------------------------------------------------------------------------------- /client/src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-b2b-saas-pre-built-ui-example/HEAD/client/src/env.d.ts -------------------------------------------------------------------------------- /client/src/images/app-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-b2b-saas-pre-built-ui-example/HEAD/client/src/images/app-screenshot.png -------------------------------------------------------------------------------- /client/src/images/squircle-logo-purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-b2b-saas-pre-built-ui-example/HEAD/client/src/images/squircle-logo-purple.png -------------------------------------------------------------------------------- /client/src/images/squircle-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-b2b-saas-pre-built-ui-example/HEAD/client/src/images/squircle-logo.png -------------------------------------------------------------------------------- /client/src/layouts/base.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-b2b-saas-pre-built-ui-example/HEAD/client/src/layouts/base.astro -------------------------------------------------------------------------------- /client/src/layouts/marketing.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-b2b-saas-pre-built-ui-example/HEAD/client/src/layouts/marketing.astro -------------------------------------------------------------------------------- /client/src/pages/dashboard/[...all].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-b2b-saas-pre-built-ui-example/HEAD/client/src/pages/dashboard/[...all].astro -------------------------------------------------------------------------------- /client/src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-b2b-saas-pre-built-ui-example/HEAD/client/src/pages/index.astro -------------------------------------------------------------------------------- /client/src/react/app.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-b2b-saas-pre-built-ui-example/HEAD/client/src/react/app.module.css -------------------------------------------------------------------------------- /client/src/react/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-b2b-saas-pre-built-ui-example/HEAD/client/src/react/app.tsx -------------------------------------------------------------------------------- /client/src/react/components/avatar.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-b2b-saas-pre-built-ui-example/HEAD/client/src/react/components/avatar.module.css -------------------------------------------------------------------------------- /client/src/react/components/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-b2b-saas-pre-built-ui-example/HEAD/client/src/react/components/avatar.tsx -------------------------------------------------------------------------------- /client/src/react/components/button.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-b2b-saas-pre-built-ui-example/HEAD/client/src/react/components/button.module.css -------------------------------------------------------------------------------- /client/src/react/components/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-b2b-saas-pre-built-ui-example/HEAD/client/src/react/components/button.tsx -------------------------------------------------------------------------------- /client/src/react/components/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-b2b-saas-pre-built-ui-example/HEAD/client/src/react/components/header.tsx -------------------------------------------------------------------------------- /client/src/react/components/idea.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-b2b-saas-pre-built-ui-example/HEAD/client/src/react/components/idea.module.css -------------------------------------------------------------------------------- /client/src/react/components/idea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-b2b-saas-pre-built-ui-example/HEAD/client/src/react/components/idea.tsx -------------------------------------------------------------------------------- /client/src/react/components/pages.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-b2b-saas-pre-built-ui-example/HEAD/client/src/react/components/pages.module.css -------------------------------------------------------------------------------- /client/src/react/components/pages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-b2b-saas-pre-built-ui-example/HEAD/client/src/react/components/pages.tsx -------------------------------------------------------------------------------- /client/src/react/components/trash-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-b2b-saas-pre-built-ui-example/HEAD/client/src/react/components/trash-icon.tsx -------------------------------------------------------------------------------- /client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-b2b-saas-pre-built-ui-example/HEAD/client/tsconfig.json -------------------------------------------------------------------------------- /doc/Stytch-B2B-app-prebuilt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-b2b-saas-pre-built-ui-example/HEAD/doc/Stytch-B2B-app-prebuilt.png -------------------------------------------------------------------------------- /doc/dashboard-stytch-admin-idea-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-b2b-saas-pre-built-ui-example/HEAD/doc/dashboard-stytch-admin-idea-config.png -------------------------------------------------------------------------------- /doc/dashboard-stytch-member-idea-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-b2b-saas-pre-built-ui-example/HEAD/doc/dashboard-stytch-member-idea-config.png -------------------------------------------------------------------------------- /doc/dashboard-stytch-resources.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-b2b-saas-pre-built-ui-example/HEAD/doc/dashboard-stytch-resources.jpg -------------------------------------------------------------------------------- /server/.env.TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-b2b-saas-pre-built-ui-example/HEAD/server/.env.TEMPLATE -------------------------------------------------------------------------------- /server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-b2b-saas-pre-built-ui-example/HEAD/server/.gitignore -------------------------------------------------------------------------------- /server/.nvmrc: -------------------------------------------------------------------------------- 1 | v20.11.1 2 | -------------------------------------------------------------------------------- /server/api/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-b2b-saas-pre-built-ui-example/HEAD/server/api/routes.ts -------------------------------------------------------------------------------- /server/auth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-b2b-saas-pre-built-ui-example/HEAD/server/auth/index.ts -------------------------------------------------------------------------------- /server/auth/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-b2b-saas-pre-built-ui-example/HEAD/server/auth/routes.ts -------------------------------------------------------------------------------- /server/db/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-b2b-saas-pre-built-ui-example/HEAD/server/db/README.md -------------------------------------------------------------------------------- /server/db/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-b2b-saas-pre-built-ui-example/HEAD/server/db/index.ts -------------------------------------------------------------------------------- /server/db/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-b2b-saas-pre-built-ui-example/HEAD/server/db/schema.ts -------------------------------------------------------------------------------- /server/db/squircle-demo.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-b2b-saas-pre-built-ui-example/HEAD/server/db/squircle-demo.db -------------------------------------------------------------------------------- /server/drizzle.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-b2b-saas-pre-built-ui-example/HEAD/server/drizzle.config.ts -------------------------------------------------------------------------------- /server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-b2b-saas-pre-built-ui-example/HEAD/server/package-lock.json -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-b2b-saas-pre-built-ui-example/HEAD/server/package.json -------------------------------------------------------------------------------- /server/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-b2b-saas-pre-built-ui-example/HEAD/server/src/index.ts -------------------------------------------------------------------------------- /server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-b2b-saas-pre-built-ui-example/HEAD/server/tsconfig.json --------------------------------------------------------------------------------