├── .env.local.example ├── .eslintrc.json ├── .github └── FUNDING.yml ├── .gitignore ├── .npmrc ├── LICENSE ├── README.md ├── next-env.d.ts ├── next.config.js ├── nhost ├── .gitignore ├── .secrets.example ├── functions │ ├── _utils │ │ ├── constants.ts │ │ ├── discord.ts │ │ ├── graphql │ │ │ ├── client.ts │ │ │ ├── subscriptions.ts │ │ │ ├── team-subscriptions.ts │ │ │ └── users.ts │ │ ├── jwt.ts │ │ ├── mailjet.ts │ │ ├── middleware.ts │ │ ├── redis.ts │ │ └── stripe.ts │ ├── contact.ts │ ├── events │ │ ├── subscription-change.ts │ │ └── user-signup.ts │ ├── mail │ │ ├── public-newsletter-confirm.ts │ │ └── public-newsletter-signup.ts │ ├── pro-examples │ │ └── download.ts │ ├── stripe │ │ ├── create-checkout.ts │ │ ├── create-customer-portal.ts │ │ ├── create-quote.ts │ │ └── webhook.ts │ ├── subscribe-edu-oss │ │ └── index.ts │ ├── team │ │ ├── invite.ts │ │ ├── remove.ts │ │ └── status.ts │ ├── test.ts │ └── users │ │ └── delete.ts ├── nhost │ ├── config.yaml │ ├── emails │ │ ├── en │ │ │ ├── email-confirm-change │ │ │ │ ├── body.html │ │ │ │ └── subject.txt │ │ │ ├── email-verify │ │ │ │ ├── body.html │ │ │ │ └── subject.txt │ │ │ ├── password-reset │ │ │ │ ├── body.html │ │ │ │ └── subject.txt │ │ │ ├── signin-passwordless-sms │ │ │ │ └── body.txt │ │ │ └── signin-passwordless │ │ │ │ ├── body.html │ │ │ │ └── subject.txt │ │ └── fr │ │ │ ├── email-confirm-change │ │ │ ├── body.html │ │ │ └── subject.txt │ │ │ ├── email-verify │ │ │ ├── body.html │ │ │ └── subject.txt │ │ │ ├── password-reset │ │ │ ├── body.html │ │ │ └── subject.txt │ │ │ ├── signin-passwordless-sms │ │ │ └── body.txt │ │ │ └── signin-passwordless │ │ │ ├── body.html │ │ │ └── subject.txt │ ├── metadata │ │ ├── actions.graphql │ │ ├── actions.yaml │ │ ├── allow_list.yaml │ │ ├── api_limits.yaml │ │ ├── backend_configs.yaml │ │ ├── cron_triggers.yaml │ │ ├── databases │ │ │ ├── databases.yaml │ │ │ └── default │ │ │ │ └── tables │ │ │ │ ├── auth_provider_requests.yaml │ │ │ │ ├── auth_providers.yaml │ │ │ │ ├── auth_refresh_token_types.yaml │ │ │ │ ├── auth_refresh_tokens.yaml │ │ │ │ ├── auth_roles.yaml │ │ │ │ ├── auth_user_providers.yaml │ │ │ │ ├── auth_user_roles.yaml │ │ │ │ ├── auth_user_security_keys.yaml │ │ │ │ ├── auth_users.yaml │ │ │ │ ├── public_team_subscriptions.yaml │ │ │ │ ├── public_user_subscriptions.yaml │ │ │ │ ├── storage_buckets.yaml │ │ │ │ ├── storage_files.yaml │ │ │ │ └── tables.yaml │ │ ├── graphql_schema_introspection.yaml │ │ ├── inherited_roles.yaml │ │ ├── metrics_config.yaml │ │ ├── network.yaml │ │ ├── opentelemetry.yaml │ │ ├── query_collections.yaml │ │ ├── remote_schemas.yaml │ │ ├── rest_endpoints.yaml │ │ └── version.yaml │ ├── migrations │ │ └── default │ │ │ ├── 1676907081029_init │ │ │ └── up.sql │ │ │ ├── 1689676628142_create_table_public_team_subscriptions │ │ │ ├── down.sql │ │ │ └── up.sql │ │ │ ├── 1689686361193_delete_fk_public_team_subscriptions_team_subscriptions_email_fkey │ │ │ ├── down.sql │ │ │ └── up.sql │ │ │ ├── 1692013333699_alter_table_public_team_subscriptions_add_column_created_at │ │ │ ├── down.sql │ │ │ └── up.sql │ │ │ ├── 1694599708505_alter_table_public_user_subscriptions_add_column_extra_seats │ │ │ ├── down.sql │ │ │ └── up.sql │ │ │ ├── 1706730039764_delete_fk_public_team_subscriptions_team_subscriptions_created_by_fkey │ │ │ ├── down.sql │ │ │ └── up.sql │ │ │ ├── 1706730053351_delete_fk_public_team_subscriptions_team_subscriptions_created_by_fkey1 │ │ │ ├── down.sql │ │ │ └── up.sql │ │ │ └── 1706730062956_delete_fk_public_team_subscriptions_team_subscriptions_user_id_fkey │ │ │ ├── down.sql │ │ │ └── up.sql │ ├── nhost.toml │ └── overlays │ │ ├── fdsuchqhfchojqpemwyn.json │ │ └── qatudfhrsubqcehhdsgx.json ├── package-lock.json ├── package.json └── tsconfig.json ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── prettier.config.js ├── public ├── docs │ └── withdrawal.pdf ├── favicon.ico ├── reactflow.jpg ├── reactflow.png └── reactflow.svg ├── redirects.json ├── src ├── app │ ├── (auth) │ │ ├── auth-redirect.tsx │ │ ├── email-verification │ │ │ ├── page.tsx │ │ │ ├── resend-link │ │ │ │ └── page.tsx │ │ │ └── verify │ │ │ │ └── page.tsx │ │ ├── layout.tsx │ │ ├── reset-password │ │ │ └── page.tsx │ │ ├── signin │ │ │ ├── magic-link │ │ │ │ └── page.tsx │ │ │ └── page.tsx │ │ └── signup │ │ │ └── page.tsx │ ├── (dashboard) │ │ ├── account │ │ │ ├── _cards │ │ │ │ ├── billing.tsx │ │ │ │ ├── change-email.tsx │ │ │ │ ├── change-password.tsx │ │ │ │ └── delete-account.tsx │ │ │ └── page.tsx │ │ ├── auth-protected.tsx │ │ ├── examples │ │ │ ├── [framework] │ │ │ │ ├── [id] │ │ │ │ │ └── page.tsx │ │ │ │ └── page.tsx │ │ │ └── page.tsx │ │ ├── layout.tsx │ │ ├── page.tsx │ │ ├── subscribe │ │ │ ├── non-commercial-edu-oss │ │ │ │ ├── page.tsx │ │ │ │ └── signup.tsx │ │ │ └── page.tsx │ │ ├── support │ │ │ └── page.tsx │ │ ├── team │ │ │ ├── _cards │ │ │ │ └── manage-team.tsx │ │ │ └── page.tsx │ │ └── templates │ │ │ ├── [id] │ │ │ └── page.tsx │ │ │ └── page.tsx │ ├── api │ │ └── revalidate │ │ │ └── route.ts │ ├── layout.tsx │ └── not-found.tsx ├── components │ ├── AuthForms │ │ ├── AuthFormWrapper.tsx │ │ ├── AuthNotification.tsx │ │ ├── ResendVerificationLink.tsx │ │ ├── ResetPassword.tsx │ │ ├── SignInEmailPassword.tsx │ │ ├── SignInMagicLink.tsx │ │ ├── SignInOAuth.tsx │ │ ├── SignUpEmailPassword.tsx │ │ └── index.tsx │ ├── CustomerPortalButton │ │ └── index.tsx │ ├── DashboardHeader │ │ ├── index.tsx │ │ └── subscription-plan.tsx │ ├── ExamplesGrid │ │ ├── index.tsx │ │ └── teaser.tsx │ ├── Fathom │ │ └── index.tsx │ ├── Footer │ │ └── index.tsx │ ├── Icons │ │ └── index.tsx │ ├── Loader │ │ ├── index.tsx │ │ └── loader.module.css │ ├── Logo │ │ └── index.tsx │ ├── Navigation │ │ ├── NavMenu.tsx │ │ ├── UserMenu.tsx │ │ └── index.tsx │ ├── Notification │ │ ├── index.tsx │ │ └── not-subscribed.tsx │ ├── Pill │ │ └── index.tsx │ ├── PricingTable │ │ ├── PricingPlan.tsx │ │ └── index.tsx │ ├── ProExampleViewer │ │ ├── download-button.tsx │ │ ├── index.tsx │ │ ├── overview-button.tsx │ │ ├── tabs │ │ │ ├── editor.tsx │ │ │ ├── index.tsx │ │ │ ├── markdown.tsx │ │ │ └── preview.tsx │ │ └── variant-select.tsx │ ├── Providers │ │ ├── NhostProvider │ │ │ ├── ClientProvider.tsx │ │ │ └── index.tsx │ │ ├── SubscriptionProvider │ │ │ └── index.tsx │ │ └── index.tsx │ ├── Sidebar │ │ ├── SidebarItem.tsx │ │ └── index.tsx │ ├── SubscriptionFeature │ │ └── index.tsx │ └── SubscriptionStatus │ │ └── index.tsx ├── fonts │ ├── NTDapper-black.woff2 │ ├── NTDapper-bold.woff2 │ ├── NTDapper-extralight.woff2 │ ├── NTDapper-light.woff2 │ ├── NTDapper-medium.woff2 │ ├── NTDapper-regular.woff2 │ ├── NTDapper-thin.woff2 │ └── index.ts ├── hooks │ ├── useDownloadExample.ts │ ├── useNhostFunction.ts │ ├── useQueryString.ts │ ├── useStripeCustomerPortal.ts │ └── useSubscription.ts ├── middleware.ts ├── styles │ └── globals.css ├── types │ ├── index.ts │ └── raw-loader.d.ts └── utils │ ├── index.ts │ └── nhost.ts ├── tailwind.config.js └── tsconfig.json /.env.local.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/.env.local.example -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [xyflow] 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | strict-peer-dependencies=false -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/README.md -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/next.config.js -------------------------------------------------------------------------------- /nhost/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/.gitignore -------------------------------------------------------------------------------- /nhost/.secrets.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/.secrets.example -------------------------------------------------------------------------------- /nhost/functions/_utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/functions/_utils/constants.ts -------------------------------------------------------------------------------- /nhost/functions/_utils/discord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/functions/_utils/discord.ts -------------------------------------------------------------------------------- /nhost/functions/_utils/graphql/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/functions/_utils/graphql/client.ts -------------------------------------------------------------------------------- /nhost/functions/_utils/graphql/subscriptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/functions/_utils/graphql/subscriptions.ts -------------------------------------------------------------------------------- /nhost/functions/_utils/graphql/team-subscriptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/functions/_utils/graphql/team-subscriptions.ts -------------------------------------------------------------------------------- /nhost/functions/_utils/graphql/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/functions/_utils/graphql/users.ts -------------------------------------------------------------------------------- /nhost/functions/_utils/jwt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/functions/_utils/jwt.ts -------------------------------------------------------------------------------- /nhost/functions/_utils/mailjet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/functions/_utils/mailjet.ts -------------------------------------------------------------------------------- /nhost/functions/_utils/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/functions/_utils/middleware.ts -------------------------------------------------------------------------------- /nhost/functions/_utils/redis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/functions/_utils/redis.ts -------------------------------------------------------------------------------- /nhost/functions/_utils/stripe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/functions/_utils/stripe.ts -------------------------------------------------------------------------------- /nhost/functions/contact.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/functions/contact.ts -------------------------------------------------------------------------------- /nhost/functions/events/subscription-change.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/functions/events/subscription-change.ts -------------------------------------------------------------------------------- /nhost/functions/events/user-signup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/functions/events/user-signup.ts -------------------------------------------------------------------------------- /nhost/functions/mail/public-newsletter-confirm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/functions/mail/public-newsletter-confirm.ts -------------------------------------------------------------------------------- /nhost/functions/mail/public-newsletter-signup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/functions/mail/public-newsletter-signup.ts -------------------------------------------------------------------------------- /nhost/functions/pro-examples/download.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/functions/pro-examples/download.ts -------------------------------------------------------------------------------- /nhost/functions/stripe/create-checkout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/functions/stripe/create-checkout.ts -------------------------------------------------------------------------------- /nhost/functions/stripe/create-customer-portal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/functions/stripe/create-customer-portal.ts -------------------------------------------------------------------------------- /nhost/functions/stripe/create-quote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/functions/stripe/create-quote.ts -------------------------------------------------------------------------------- /nhost/functions/stripe/webhook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/functions/stripe/webhook.ts -------------------------------------------------------------------------------- /nhost/functions/subscribe-edu-oss/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/functions/subscribe-edu-oss/index.ts -------------------------------------------------------------------------------- /nhost/functions/team/invite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/functions/team/invite.ts -------------------------------------------------------------------------------- /nhost/functions/team/remove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/functions/team/remove.ts -------------------------------------------------------------------------------- /nhost/functions/team/status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/functions/team/status.ts -------------------------------------------------------------------------------- /nhost/functions/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/functions/test.ts -------------------------------------------------------------------------------- /nhost/functions/users/delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/functions/users/delete.ts -------------------------------------------------------------------------------- /nhost/nhost/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/nhost/config.yaml -------------------------------------------------------------------------------- /nhost/nhost/emails/en/email-confirm-change/body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/nhost/emails/en/email-confirm-change/body.html -------------------------------------------------------------------------------- /nhost/nhost/emails/en/email-confirm-change/subject.txt: -------------------------------------------------------------------------------- 1 | React Flow Pro: Please confirm your new email address -------------------------------------------------------------------------------- /nhost/nhost/emails/en/email-verify/body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/nhost/emails/en/email-verify/body.html -------------------------------------------------------------------------------- /nhost/nhost/emails/en/email-verify/subject.txt: -------------------------------------------------------------------------------- 1 | React Flow Pro: Please verify your email -------------------------------------------------------------------------------- /nhost/nhost/emails/en/password-reset/body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/nhost/emails/en/password-reset/body.html -------------------------------------------------------------------------------- /nhost/nhost/emails/en/password-reset/subject.txt: -------------------------------------------------------------------------------- 1 | React Flow Pro: Reset your password -------------------------------------------------------------------------------- /nhost/nhost/emails/en/signin-passwordless-sms/body.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/nhost/emails/en/signin-passwordless-sms/body.txt -------------------------------------------------------------------------------- /nhost/nhost/emails/en/signin-passwordless/body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/nhost/emails/en/signin-passwordless/body.html -------------------------------------------------------------------------------- /nhost/nhost/emails/en/signin-passwordless/subject.txt: -------------------------------------------------------------------------------- 1 | React Flow Pro: Secure sign-in link -------------------------------------------------------------------------------- /nhost/nhost/emails/fr/email-confirm-change/body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/nhost/emails/fr/email-confirm-change/body.html -------------------------------------------------------------------------------- /nhost/nhost/emails/fr/email-confirm-change/subject.txt: -------------------------------------------------------------------------------- 1 | Changez votre adresse courriel 2 | -------------------------------------------------------------------------------- /nhost/nhost/emails/fr/email-verify/body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/nhost/emails/fr/email-verify/body.html -------------------------------------------------------------------------------- /nhost/nhost/emails/fr/email-verify/subject.txt: -------------------------------------------------------------------------------- 1 | Vérifier votre courriel 2 | -------------------------------------------------------------------------------- /nhost/nhost/emails/fr/password-reset/body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/nhost/emails/fr/password-reset/body.html -------------------------------------------------------------------------------- /nhost/nhost/emails/fr/password-reset/subject.txt: -------------------------------------------------------------------------------- 1 | Réinitialiser votre mot de passe 2 | -------------------------------------------------------------------------------- /nhost/nhost/emails/fr/signin-passwordless-sms/body.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/nhost/emails/fr/signin-passwordless-sms/body.txt -------------------------------------------------------------------------------- /nhost/nhost/emails/fr/signin-passwordless/body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/nhost/emails/fr/signin-passwordless/body.html -------------------------------------------------------------------------------- /nhost/nhost/emails/fr/signin-passwordless/subject.txt: -------------------------------------------------------------------------------- 1 | Lien de connexion sécurisé 2 | -------------------------------------------------------------------------------- /nhost/nhost/metadata/actions.graphql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nhost/nhost/metadata/actions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/nhost/metadata/actions.yaml -------------------------------------------------------------------------------- /nhost/nhost/metadata/allow_list.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /nhost/nhost/metadata/api_limits.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /nhost/nhost/metadata/backend_configs.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /nhost/nhost/metadata/cron_triggers.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /nhost/nhost/metadata/databases/databases.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/nhost/metadata/databases/databases.yaml -------------------------------------------------------------------------------- /nhost/nhost/metadata/databases/default/tables/auth_provider_requests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/nhost/metadata/databases/default/tables/auth_provider_requests.yaml -------------------------------------------------------------------------------- /nhost/nhost/metadata/databases/default/tables/auth_providers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/nhost/metadata/databases/default/tables/auth_providers.yaml -------------------------------------------------------------------------------- /nhost/nhost/metadata/databases/default/tables/auth_refresh_token_types.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/nhost/metadata/databases/default/tables/auth_refresh_token_types.yaml -------------------------------------------------------------------------------- /nhost/nhost/metadata/databases/default/tables/auth_refresh_tokens.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/nhost/metadata/databases/default/tables/auth_refresh_tokens.yaml -------------------------------------------------------------------------------- /nhost/nhost/metadata/databases/default/tables/auth_roles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/nhost/metadata/databases/default/tables/auth_roles.yaml -------------------------------------------------------------------------------- /nhost/nhost/metadata/databases/default/tables/auth_user_providers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/nhost/metadata/databases/default/tables/auth_user_providers.yaml -------------------------------------------------------------------------------- /nhost/nhost/metadata/databases/default/tables/auth_user_roles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/nhost/metadata/databases/default/tables/auth_user_roles.yaml -------------------------------------------------------------------------------- /nhost/nhost/metadata/databases/default/tables/auth_user_security_keys.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/nhost/metadata/databases/default/tables/auth_user_security_keys.yaml -------------------------------------------------------------------------------- /nhost/nhost/metadata/databases/default/tables/auth_users.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/nhost/metadata/databases/default/tables/auth_users.yaml -------------------------------------------------------------------------------- /nhost/nhost/metadata/databases/default/tables/public_team_subscriptions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/nhost/metadata/databases/default/tables/public_team_subscriptions.yaml -------------------------------------------------------------------------------- /nhost/nhost/metadata/databases/default/tables/public_user_subscriptions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/nhost/metadata/databases/default/tables/public_user_subscriptions.yaml -------------------------------------------------------------------------------- /nhost/nhost/metadata/databases/default/tables/storage_buckets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/nhost/metadata/databases/default/tables/storage_buckets.yaml -------------------------------------------------------------------------------- /nhost/nhost/metadata/databases/default/tables/storage_files.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/nhost/metadata/databases/default/tables/storage_files.yaml -------------------------------------------------------------------------------- /nhost/nhost/metadata/databases/default/tables/tables.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/nhost/metadata/databases/default/tables/tables.yaml -------------------------------------------------------------------------------- /nhost/nhost/metadata/graphql_schema_introspection.yaml: -------------------------------------------------------------------------------- 1 | disabled_for_roles: [] 2 | -------------------------------------------------------------------------------- /nhost/nhost/metadata/inherited_roles.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /nhost/nhost/metadata/metrics_config.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /nhost/nhost/metadata/network.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /nhost/nhost/metadata/opentelemetry.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /nhost/nhost/metadata/query_collections.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /nhost/nhost/metadata/remote_schemas.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /nhost/nhost/metadata/rest_endpoints.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /nhost/nhost/metadata/version.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | -------------------------------------------------------------------------------- /nhost/nhost/migrations/default/1676907081029_init/up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/nhost/migrations/default/1676907081029_init/up.sql -------------------------------------------------------------------------------- /nhost/nhost/migrations/default/1689676628142_create_table_public_team_subscriptions/down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE "public"."team_subscriptions"; 2 | -------------------------------------------------------------------------------- /nhost/nhost/migrations/default/1689676628142_create_table_public_team_subscriptions/up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/nhost/migrations/default/1689676628142_create_table_public_team_subscriptions/up.sql -------------------------------------------------------------------------------- /nhost/nhost/migrations/default/1689686361193_delete_fk_public_team_subscriptions_team_subscriptions_email_fkey/down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/nhost/migrations/default/1689686361193_delete_fk_public_team_subscriptions_team_subscriptions_email_fkey/down.sql -------------------------------------------------------------------------------- /nhost/nhost/migrations/default/1689686361193_delete_fk_public_team_subscriptions_team_subscriptions_email_fkey/up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/nhost/migrations/default/1689686361193_delete_fk_public_team_subscriptions_team_subscriptions_email_fkey/up.sql -------------------------------------------------------------------------------- /nhost/nhost/migrations/default/1692013333699_alter_table_public_team_subscriptions_add_column_created_at/down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/nhost/migrations/default/1692013333699_alter_table_public_team_subscriptions_add_column_created_at/down.sql -------------------------------------------------------------------------------- /nhost/nhost/migrations/default/1692013333699_alter_table_public_team_subscriptions_add_column_created_at/up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/nhost/migrations/default/1692013333699_alter_table_public_team_subscriptions_add_column_created_at/up.sql -------------------------------------------------------------------------------- /nhost/nhost/migrations/default/1694599708505_alter_table_public_user_subscriptions_add_column_extra_seats/down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/nhost/migrations/default/1694599708505_alter_table_public_user_subscriptions_add_column_extra_seats/down.sql -------------------------------------------------------------------------------- /nhost/nhost/migrations/default/1694599708505_alter_table_public_user_subscriptions_add_column_extra_seats/up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/nhost/migrations/default/1694599708505_alter_table_public_user_subscriptions_add_column_extra_seats/up.sql -------------------------------------------------------------------------------- /nhost/nhost/migrations/default/1706730039764_delete_fk_public_team_subscriptions_team_subscriptions_created_by_fkey/down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/nhost/migrations/default/1706730039764_delete_fk_public_team_subscriptions_team_subscriptions_created_by_fkey/down.sql -------------------------------------------------------------------------------- /nhost/nhost/migrations/default/1706730039764_delete_fk_public_team_subscriptions_team_subscriptions_created_by_fkey/up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/nhost/migrations/default/1706730039764_delete_fk_public_team_subscriptions_team_subscriptions_created_by_fkey/up.sql -------------------------------------------------------------------------------- /nhost/nhost/migrations/default/1706730053351_delete_fk_public_team_subscriptions_team_subscriptions_created_by_fkey1/down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/nhost/migrations/default/1706730053351_delete_fk_public_team_subscriptions_team_subscriptions_created_by_fkey1/down.sql -------------------------------------------------------------------------------- /nhost/nhost/migrations/default/1706730053351_delete_fk_public_team_subscriptions_team_subscriptions_created_by_fkey1/up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/nhost/migrations/default/1706730053351_delete_fk_public_team_subscriptions_team_subscriptions_created_by_fkey1/up.sql -------------------------------------------------------------------------------- /nhost/nhost/migrations/default/1706730062956_delete_fk_public_team_subscriptions_team_subscriptions_user_id_fkey/down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/nhost/migrations/default/1706730062956_delete_fk_public_team_subscriptions_team_subscriptions_user_id_fkey/down.sql -------------------------------------------------------------------------------- /nhost/nhost/migrations/default/1706730062956_delete_fk_public_team_subscriptions_team_subscriptions_user_id_fkey/up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/nhost/migrations/default/1706730062956_delete_fk_public_team_subscriptions_team_subscriptions_user_id_fkey/up.sql -------------------------------------------------------------------------------- /nhost/nhost/nhost.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/nhost/nhost.toml -------------------------------------------------------------------------------- /nhost/nhost/overlays/fdsuchqhfchojqpemwyn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/nhost/overlays/fdsuchqhfchojqpemwyn.json -------------------------------------------------------------------------------- /nhost/nhost/overlays/qatudfhrsubqcehhdsgx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/nhost/overlays/qatudfhrsubqcehhdsgx.json -------------------------------------------------------------------------------- /nhost/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/package-lock.json -------------------------------------------------------------------------------- /nhost/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/package.json -------------------------------------------------------------------------------- /nhost/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/nhost/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/postcss.config.js -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/prettier.config.js -------------------------------------------------------------------------------- /public/docs/withdrawal.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/public/docs/withdrawal.pdf -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/reactflow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/public/reactflow.jpg -------------------------------------------------------------------------------- /public/reactflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/public/reactflow.png -------------------------------------------------------------------------------- /public/reactflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/public/reactflow.svg -------------------------------------------------------------------------------- /redirects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/redirects.json -------------------------------------------------------------------------------- /src/app/(auth)/auth-redirect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/app/(auth)/auth-redirect.tsx -------------------------------------------------------------------------------- /src/app/(auth)/email-verification/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/app/(auth)/email-verification/page.tsx -------------------------------------------------------------------------------- /src/app/(auth)/email-verification/resend-link/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/app/(auth)/email-verification/resend-link/page.tsx -------------------------------------------------------------------------------- /src/app/(auth)/email-verification/verify/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/app/(auth)/email-verification/verify/page.tsx -------------------------------------------------------------------------------- /src/app/(auth)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/app/(auth)/layout.tsx -------------------------------------------------------------------------------- /src/app/(auth)/reset-password/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/app/(auth)/reset-password/page.tsx -------------------------------------------------------------------------------- /src/app/(auth)/signin/magic-link/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/app/(auth)/signin/magic-link/page.tsx -------------------------------------------------------------------------------- /src/app/(auth)/signin/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/app/(auth)/signin/page.tsx -------------------------------------------------------------------------------- /src/app/(auth)/signup/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/app/(auth)/signup/page.tsx -------------------------------------------------------------------------------- /src/app/(dashboard)/account/_cards/billing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/app/(dashboard)/account/_cards/billing.tsx -------------------------------------------------------------------------------- /src/app/(dashboard)/account/_cards/change-email.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/app/(dashboard)/account/_cards/change-email.tsx -------------------------------------------------------------------------------- /src/app/(dashboard)/account/_cards/change-password.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/app/(dashboard)/account/_cards/change-password.tsx -------------------------------------------------------------------------------- /src/app/(dashboard)/account/_cards/delete-account.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/app/(dashboard)/account/_cards/delete-account.tsx -------------------------------------------------------------------------------- /src/app/(dashboard)/account/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/app/(dashboard)/account/page.tsx -------------------------------------------------------------------------------- /src/app/(dashboard)/auth-protected.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/app/(dashboard)/auth-protected.tsx -------------------------------------------------------------------------------- /src/app/(dashboard)/examples/[framework]/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/app/(dashboard)/examples/[framework]/[id]/page.tsx -------------------------------------------------------------------------------- /src/app/(dashboard)/examples/[framework]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/app/(dashboard)/examples/[framework]/page.tsx -------------------------------------------------------------------------------- /src/app/(dashboard)/examples/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/app/(dashboard)/examples/page.tsx -------------------------------------------------------------------------------- /src/app/(dashboard)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/app/(dashboard)/layout.tsx -------------------------------------------------------------------------------- /src/app/(dashboard)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/app/(dashboard)/page.tsx -------------------------------------------------------------------------------- /src/app/(dashboard)/subscribe/non-commercial-edu-oss/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/app/(dashboard)/subscribe/non-commercial-edu-oss/page.tsx -------------------------------------------------------------------------------- /src/app/(dashboard)/subscribe/non-commercial-edu-oss/signup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/app/(dashboard)/subscribe/non-commercial-edu-oss/signup.tsx -------------------------------------------------------------------------------- /src/app/(dashboard)/subscribe/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/app/(dashboard)/subscribe/page.tsx -------------------------------------------------------------------------------- /src/app/(dashboard)/support/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/app/(dashboard)/support/page.tsx -------------------------------------------------------------------------------- /src/app/(dashboard)/team/_cards/manage-team.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/app/(dashboard)/team/_cards/manage-team.tsx -------------------------------------------------------------------------------- /src/app/(dashboard)/team/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/app/(dashboard)/team/page.tsx -------------------------------------------------------------------------------- /src/app/(dashboard)/templates/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/app/(dashboard)/templates/[id]/page.tsx -------------------------------------------------------------------------------- /src/app/(dashboard)/templates/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/app/(dashboard)/templates/page.tsx -------------------------------------------------------------------------------- /src/app/api/revalidate/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/app/api/revalidate/route.ts -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/app/not-found.tsx -------------------------------------------------------------------------------- /src/components/AuthForms/AuthFormWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/components/AuthForms/AuthFormWrapper.tsx -------------------------------------------------------------------------------- /src/components/AuthForms/AuthNotification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/components/AuthForms/AuthNotification.tsx -------------------------------------------------------------------------------- /src/components/AuthForms/ResendVerificationLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/components/AuthForms/ResendVerificationLink.tsx -------------------------------------------------------------------------------- /src/components/AuthForms/ResetPassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/components/AuthForms/ResetPassword.tsx -------------------------------------------------------------------------------- /src/components/AuthForms/SignInEmailPassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/components/AuthForms/SignInEmailPassword.tsx -------------------------------------------------------------------------------- /src/components/AuthForms/SignInMagicLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/components/AuthForms/SignInMagicLink.tsx -------------------------------------------------------------------------------- /src/components/AuthForms/SignInOAuth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/components/AuthForms/SignInOAuth.tsx -------------------------------------------------------------------------------- /src/components/AuthForms/SignUpEmailPassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/components/AuthForms/SignUpEmailPassword.tsx -------------------------------------------------------------------------------- /src/components/AuthForms/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/components/AuthForms/index.tsx -------------------------------------------------------------------------------- /src/components/CustomerPortalButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/components/CustomerPortalButton/index.tsx -------------------------------------------------------------------------------- /src/components/DashboardHeader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/components/DashboardHeader/index.tsx -------------------------------------------------------------------------------- /src/components/DashboardHeader/subscription-plan.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/components/DashboardHeader/subscription-plan.tsx -------------------------------------------------------------------------------- /src/components/ExamplesGrid/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/components/ExamplesGrid/index.tsx -------------------------------------------------------------------------------- /src/components/ExamplesGrid/teaser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/components/ExamplesGrid/teaser.tsx -------------------------------------------------------------------------------- /src/components/Fathom/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/components/Fathom/index.tsx -------------------------------------------------------------------------------- /src/components/Footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/components/Footer/index.tsx -------------------------------------------------------------------------------- /src/components/Icons/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/components/Icons/index.tsx -------------------------------------------------------------------------------- /src/components/Loader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/components/Loader/index.tsx -------------------------------------------------------------------------------- /src/components/Loader/loader.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/components/Loader/loader.module.css -------------------------------------------------------------------------------- /src/components/Logo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/components/Logo/index.tsx -------------------------------------------------------------------------------- /src/components/Navigation/NavMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/components/Navigation/NavMenu.tsx -------------------------------------------------------------------------------- /src/components/Navigation/UserMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/components/Navigation/UserMenu.tsx -------------------------------------------------------------------------------- /src/components/Navigation/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/components/Navigation/index.tsx -------------------------------------------------------------------------------- /src/components/Notification/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/components/Notification/index.tsx -------------------------------------------------------------------------------- /src/components/Notification/not-subscribed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/components/Notification/not-subscribed.tsx -------------------------------------------------------------------------------- /src/components/Pill/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/components/Pill/index.tsx -------------------------------------------------------------------------------- /src/components/PricingTable/PricingPlan.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/components/PricingTable/PricingPlan.tsx -------------------------------------------------------------------------------- /src/components/PricingTable/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/components/PricingTable/index.tsx -------------------------------------------------------------------------------- /src/components/ProExampleViewer/download-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/components/ProExampleViewer/download-button.tsx -------------------------------------------------------------------------------- /src/components/ProExampleViewer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/components/ProExampleViewer/index.tsx -------------------------------------------------------------------------------- /src/components/ProExampleViewer/overview-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/components/ProExampleViewer/overview-button.tsx -------------------------------------------------------------------------------- /src/components/ProExampleViewer/tabs/editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/components/ProExampleViewer/tabs/editor.tsx -------------------------------------------------------------------------------- /src/components/ProExampleViewer/tabs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/components/ProExampleViewer/tabs/index.tsx -------------------------------------------------------------------------------- /src/components/ProExampleViewer/tabs/markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/components/ProExampleViewer/tabs/markdown.tsx -------------------------------------------------------------------------------- /src/components/ProExampleViewer/tabs/preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/components/ProExampleViewer/tabs/preview.tsx -------------------------------------------------------------------------------- /src/components/ProExampleViewer/variant-select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/components/ProExampleViewer/variant-select.tsx -------------------------------------------------------------------------------- /src/components/Providers/NhostProvider/ClientProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/components/Providers/NhostProvider/ClientProvider.tsx -------------------------------------------------------------------------------- /src/components/Providers/NhostProvider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/components/Providers/NhostProvider/index.tsx -------------------------------------------------------------------------------- /src/components/Providers/SubscriptionProvider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/components/Providers/SubscriptionProvider/index.tsx -------------------------------------------------------------------------------- /src/components/Providers/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/components/Providers/index.tsx -------------------------------------------------------------------------------- /src/components/Sidebar/SidebarItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/components/Sidebar/SidebarItem.tsx -------------------------------------------------------------------------------- /src/components/Sidebar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/components/Sidebar/index.tsx -------------------------------------------------------------------------------- /src/components/SubscriptionFeature/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/components/SubscriptionFeature/index.tsx -------------------------------------------------------------------------------- /src/components/SubscriptionStatus/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/components/SubscriptionStatus/index.tsx -------------------------------------------------------------------------------- /src/fonts/NTDapper-black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/fonts/NTDapper-black.woff2 -------------------------------------------------------------------------------- /src/fonts/NTDapper-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/fonts/NTDapper-bold.woff2 -------------------------------------------------------------------------------- /src/fonts/NTDapper-extralight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/fonts/NTDapper-extralight.woff2 -------------------------------------------------------------------------------- /src/fonts/NTDapper-light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/fonts/NTDapper-light.woff2 -------------------------------------------------------------------------------- /src/fonts/NTDapper-medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/fonts/NTDapper-medium.woff2 -------------------------------------------------------------------------------- /src/fonts/NTDapper-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/fonts/NTDapper-regular.woff2 -------------------------------------------------------------------------------- /src/fonts/NTDapper-thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/fonts/NTDapper-thin.woff2 -------------------------------------------------------------------------------- /src/fonts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/fonts/index.ts -------------------------------------------------------------------------------- /src/hooks/useDownloadExample.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/hooks/useDownloadExample.ts -------------------------------------------------------------------------------- /src/hooks/useNhostFunction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/hooks/useNhostFunction.ts -------------------------------------------------------------------------------- /src/hooks/useQueryString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/hooks/useQueryString.ts -------------------------------------------------------------------------------- /src/hooks/useStripeCustomerPortal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/hooks/useStripeCustomerPortal.ts -------------------------------------------------------------------------------- /src/hooks/useSubscription.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/hooks/useSubscription.ts -------------------------------------------------------------------------------- /src/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/middleware.ts -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/types/raw-loader.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/types/raw-loader.d.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/utils/nhost.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/src/utils/nhost.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyflow/pro-platform/HEAD/tsconfig.json --------------------------------------------------------------------------------