├── .editorconfig ├── .eslintrc.json ├── .gitattributes ├── .gitignore ├── .yarn └── install-state.gz ├── .yarnrc.yml ├── README.md ├── components.json ├── messages ├── de.json ├── en.json └── fr.json ├── next-auth.d.ts ├── next.config.mjs ├── package.json ├── postcss.config.js ├── prisma ├── migrations │ ├── 20240123111743_ │ │ └── migration.sql │ ├── 20240125103351_init │ │ └── migration.sql │ ├── 20240128214836_remove_price_plan_id_fields │ │ └── migration.sql │ ├── 20240303165509_add_creator_id │ │ └── migration.sql │ └── migration_lock.toml └── schema.prisma ├── src ├── app │ ├── [locale] │ │ ├── (auth) │ │ │ └── signin │ │ │ │ ├── page.module.scss │ │ │ │ └── page.tsx │ │ ├── (site) │ │ │ ├── _@modal │ │ │ │ ├── (.)users │ │ │ │ │ └── [id] │ │ │ │ │ │ ├── Modal.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ └── default.tsx │ │ │ ├── account │ │ │ │ ├── AccountForm.tsx │ │ │ │ ├── DeleteAccountButton.tsx │ │ │ │ └── page.tsx │ │ │ ├── error.tsx │ │ │ ├── layout.tsx │ │ │ ├── page.tsx │ │ │ ├── pricing │ │ │ │ └── page.tsx │ │ │ ├── privacy │ │ │ │ └── page.tsx │ │ │ ├── terms │ │ │ │ └── page.tsx │ │ │ └── users │ │ │ │ ├── UsersList.tsx │ │ │ │ ├── [id] │ │ │ │ └── page.tsx │ │ │ │ └── page.tsx │ │ └── layout.tsx │ ├── api │ │ ├── auth │ │ │ └── [...nextauth] │ │ │ │ └── route.ts │ │ ├── checkout │ │ │ └── route.ts │ │ ├── ls │ │ │ └── webhook │ │ │ │ └── route.ts │ │ ├── user │ │ │ └── [email] │ │ │ │ └── route.ts │ │ └── users │ │ │ └── route.ts │ ├── apple-icon.png │ ├── favicon.ico │ ├── opengraph-image.png │ └── twitter-image.png ├── components │ ├── ClientSession.tsx │ ├── DatabaseUser.tsx │ ├── ServerSession.tsx │ ├── core │ │ ├── brand │ │ │ ├── Logo.module.scss │ │ │ └── Logo.tsx │ │ ├── footer │ │ │ └── Footer.tsx │ │ ├── forms │ │ │ └── AuthForm.tsx │ │ ├── gradient-text │ │ │ └── GradientText.tsx │ │ ├── header │ │ │ ├── Header.tsx │ │ │ └── SignOutButton.tsx │ │ ├── hero │ │ │ ├── Hero.module.scss │ │ │ └── Hero.tsx │ │ ├── lang │ │ │ └── Lang.tsx │ │ ├── pill │ │ │ └── Pill.tsx │ │ ├── provider │ │ │ └── NextAuthProvider.tsx │ │ ├── section │ │ │ ├── Section.module.scss │ │ │ ├── Section.tsx │ │ │ └── SectionHeader.tsx │ │ └── user │ │ │ └── UserSubscription.tsx │ ├── logos │ │ ├── auth.tsx │ │ ├── lemonsqueezy.tsx │ │ ├── mongodb.tsx │ │ ├── mysql.tsx │ │ ├── next.tsx │ │ ├── nextintl.tsx │ │ ├── postgres.tsx │ │ ├── prisma.tsx │ │ ├── resend.tsx │ │ ├── shadcnui.tsx │ │ ├── sqlite.tsx │ │ ├── supabase.tsx │ │ └── tailwind.tsx │ ├── marketing │ │ ├── databases │ │ │ └── Databases.tsx │ │ ├── faqs │ │ │ └── FAQs.tsx │ │ ├── features │ │ │ └── Features.tsx │ │ ├── integrations │ │ │ └── Integrations.tsx │ │ ├── international │ │ │ └── International.tsx │ │ ├── plans │ │ │ ├── PlanButton.tsx │ │ │ ├── Plans.tsx │ │ │ └── loading.tsx │ │ └── testimonials │ │ │ └── Testimonials.tsx │ └── ui │ │ ├── accordion.tsx │ │ ├── avatar.tsx │ │ ├── badge.tsx │ │ ├── button.tsx │ │ ├── card.tsx │ │ ├── dialog.tsx │ │ ├── dropdown-menu.tsx │ │ ├── form.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── select.tsx │ │ ├── skeleton.tsx │ │ ├── sonner.tsx │ │ └── tabs.tsx ├── i18n.ts ├── lib │ ├── auth │ │ ├── auth.ts │ │ ├── index.ts │ │ └── session.ts │ ├── intl │ │ └── navigation.ts │ ├── lemonsqueezy │ │ └── index.ts │ ├── prisma │ │ ├── index.ts │ │ ├── lemonsqueezy.ts │ │ └── users.ts │ ├── resend │ │ ├── index.ts │ │ └── resend.ts │ ├── utils.ts │ └── utils │ │ ├── fonts.ts │ │ └── initials.ts ├── middleware.ts ├── styles │ └── globals.css └── types │ ├── index.d.ts │ └── lemonsqueezy │ └── index.ts ├── tailwind.config.js ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/.gitignore -------------------------------------------------------------------------------- /.yarn/install-state.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/.yarn/install-state.gz -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- 1 | nodeLinker: node-modules 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/README.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/components.json -------------------------------------------------------------------------------- /messages/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/messages/de.json -------------------------------------------------------------------------------- /messages/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/messages/en.json -------------------------------------------------------------------------------- /messages/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/messages/fr.json -------------------------------------------------------------------------------- /next-auth.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/next-auth.d.ts -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/postcss.config.js -------------------------------------------------------------------------------- /prisma/migrations/20240123111743_/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/prisma/migrations/20240123111743_/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20240125103351_init/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/prisma/migrations/20240125103351_init/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20240128214836_remove_price_plan_id_fields/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/prisma/migrations/20240128214836_remove_price_plan_id_fields/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20240303165509_add_creator_id/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/prisma/migrations/20240303165509_add_creator_id/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/migration_lock.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/prisma/migrations/migration_lock.toml -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /src/app/[locale]/(auth)/signin/page.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/app/[locale]/(auth)/signin/page.module.scss -------------------------------------------------------------------------------- /src/app/[locale]/(auth)/signin/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/app/[locale]/(auth)/signin/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(site)/_@modal/(.)users/[id]/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/app/[locale]/(site)/_@modal/(.)users/[id]/Modal.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(site)/_@modal/(.)users/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/app/[locale]/(site)/_@modal/(.)users/[id]/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(site)/_@modal/default.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/app/[locale]/(site)/_@modal/default.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(site)/account/AccountForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/app/[locale]/(site)/account/AccountForm.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(site)/account/DeleteAccountButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/app/[locale]/(site)/account/DeleteAccountButton.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(site)/account/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/app/[locale]/(site)/account/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(site)/error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/app/[locale]/(site)/error.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(site)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/app/[locale]/(site)/layout.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(site)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/app/[locale]/(site)/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(site)/pricing/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/app/[locale]/(site)/pricing/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(site)/privacy/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/app/[locale]/(site)/privacy/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(site)/terms/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/app/[locale]/(site)/terms/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(site)/users/UsersList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/app/[locale]/(site)/users/UsersList.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(site)/users/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/app/[locale]/(site)/users/[id]/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(site)/users/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/app/[locale]/(site)/users/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/app/[locale]/layout.tsx -------------------------------------------------------------------------------- /src/app/api/auth/[...nextauth]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/app/api/auth/[...nextauth]/route.ts -------------------------------------------------------------------------------- /src/app/api/checkout/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/app/api/checkout/route.ts -------------------------------------------------------------------------------- /src/app/api/ls/webhook/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/app/api/ls/webhook/route.ts -------------------------------------------------------------------------------- /src/app/api/user/[email]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/app/api/user/[email]/route.ts -------------------------------------------------------------------------------- /src/app/api/users/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/app/api/users/route.ts -------------------------------------------------------------------------------- /src/app/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/app/apple-icon.png -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/opengraph-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/app/opengraph-image.png -------------------------------------------------------------------------------- /src/app/twitter-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/app/twitter-image.png -------------------------------------------------------------------------------- /src/components/ClientSession.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/components/ClientSession.tsx -------------------------------------------------------------------------------- /src/components/DatabaseUser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/components/DatabaseUser.tsx -------------------------------------------------------------------------------- /src/components/ServerSession.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/components/ServerSession.tsx -------------------------------------------------------------------------------- /src/components/core/brand/Logo.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/components/core/brand/Logo.module.scss -------------------------------------------------------------------------------- /src/components/core/brand/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/components/core/brand/Logo.tsx -------------------------------------------------------------------------------- /src/components/core/footer/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/components/core/footer/Footer.tsx -------------------------------------------------------------------------------- /src/components/core/forms/AuthForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/components/core/forms/AuthForm.tsx -------------------------------------------------------------------------------- /src/components/core/gradient-text/GradientText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/components/core/gradient-text/GradientText.tsx -------------------------------------------------------------------------------- /src/components/core/header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/components/core/header/Header.tsx -------------------------------------------------------------------------------- /src/components/core/header/SignOutButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/components/core/header/SignOutButton.tsx -------------------------------------------------------------------------------- /src/components/core/hero/Hero.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/components/core/hero/Hero.module.scss -------------------------------------------------------------------------------- /src/components/core/hero/Hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/components/core/hero/Hero.tsx -------------------------------------------------------------------------------- /src/components/core/lang/Lang.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/components/core/lang/Lang.tsx -------------------------------------------------------------------------------- /src/components/core/pill/Pill.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/components/core/pill/Pill.tsx -------------------------------------------------------------------------------- /src/components/core/provider/NextAuthProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/components/core/provider/NextAuthProvider.tsx -------------------------------------------------------------------------------- /src/components/core/section/Section.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/components/core/section/Section.module.scss -------------------------------------------------------------------------------- /src/components/core/section/Section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/components/core/section/Section.tsx -------------------------------------------------------------------------------- /src/components/core/section/SectionHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/components/core/section/SectionHeader.tsx -------------------------------------------------------------------------------- /src/components/core/user/UserSubscription.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/components/core/user/UserSubscription.tsx -------------------------------------------------------------------------------- /src/components/logos/auth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/components/logos/auth.tsx -------------------------------------------------------------------------------- /src/components/logos/lemonsqueezy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/components/logos/lemonsqueezy.tsx -------------------------------------------------------------------------------- /src/components/logos/mongodb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/components/logos/mongodb.tsx -------------------------------------------------------------------------------- /src/components/logos/mysql.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/components/logos/mysql.tsx -------------------------------------------------------------------------------- /src/components/logos/next.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/components/logos/next.tsx -------------------------------------------------------------------------------- /src/components/logos/nextintl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/components/logos/nextintl.tsx -------------------------------------------------------------------------------- /src/components/logos/postgres.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/components/logos/postgres.tsx -------------------------------------------------------------------------------- /src/components/logos/prisma.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/components/logos/prisma.tsx -------------------------------------------------------------------------------- /src/components/logos/resend.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/components/logos/resend.tsx -------------------------------------------------------------------------------- /src/components/logos/shadcnui.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/components/logos/shadcnui.tsx -------------------------------------------------------------------------------- /src/components/logos/sqlite.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/components/logos/sqlite.tsx -------------------------------------------------------------------------------- /src/components/logos/supabase.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/components/logos/supabase.tsx -------------------------------------------------------------------------------- /src/components/logos/tailwind.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/components/logos/tailwind.tsx -------------------------------------------------------------------------------- /src/components/marketing/databases/Databases.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/components/marketing/databases/Databases.tsx -------------------------------------------------------------------------------- /src/components/marketing/faqs/FAQs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/components/marketing/faqs/FAQs.tsx -------------------------------------------------------------------------------- /src/components/marketing/features/Features.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/components/marketing/features/Features.tsx -------------------------------------------------------------------------------- /src/components/marketing/integrations/Integrations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/components/marketing/integrations/Integrations.tsx -------------------------------------------------------------------------------- /src/components/marketing/international/International.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/components/marketing/international/International.tsx -------------------------------------------------------------------------------- /src/components/marketing/plans/PlanButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/components/marketing/plans/PlanButton.tsx -------------------------------------------------------------------------------- /src/components/marketing/plans/Plans.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/components/marketing/plans/Plans.tsx -------------------------------------------------------------------------------- /src/components/marketing/plans/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/components/marketing/plans/loading.tsx -------------------------------------------------------------------------------- /src/components/marketing/testimonials/Testimonials.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/components/marketing/testimonials/Testimonials.tsx -------------------------------------------------------------------------------- /src/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/components/ui/accordion.tsx -------------------------------------------------------------------------------- /src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/components/ui/form.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/components/ui/select.tsx -------------------------------------------------------------------------------- /src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /src/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/components/ui/sonner.tsx -------------------------------------------------------------------------------- /src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /src/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/i18n.ts -------------------------------------------------------------------------------- /src/lib/auth/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/lib/auth/auth.ts -------------------------------------------------------------------------------- /src/lib/auth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/lib/auth/index.ts -------------------------------------------------------------------------------- /src/lib/auth/session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/lib/auth/session.ts -------------------------------------------------------------------------------- /src/lib/intl/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/lib/intl/navigation.ts -------------------------------------------------------------------------------- /src/lib/lemonsqueezy/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/lib/lemonsqueezy/index.ts -------------------------------------------------------------------------------- /src/lib/prisma/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/lib/prisma/index.ts -------------------------------------------------------------------------------- /src/lib/prisma/lemonsqueezy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/lib/prisma/lemonsqueezy.ts -------------------------------------------------------------------------------- /src/lib/prisma/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/lib/prisma/users.ts -------------------------------------------------------------------------------- /src/lib/resend/index.ts: -------------------------------------------------------------------------------- 1 | export * from './resend' -------------------------------------------------------------------------------- /src/lib/resend/resend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/lib/resend/resend.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/lib/utils/fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/lib/utils/fonts.ts -------------------------------------------------------------------------------- /src/lib/utils/initials.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/lib/utils/initials.ts -------------------------------------------------------------------------------- /src/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/middleware.ts -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /src/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/types/index.d.ts -------------------------------------------------------------------------------- /src/types/lemonsqueezy/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/src/types/lemonsqueezy/index.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uixmat/firestarta/HEAD/yarn.lock --------------------------------------------------------------------------------