├── .changeset ├── README.md └── config.json ├── .editorconfig ├── .eslintrc.js ├── .github └── workflows │ ├── code-check.yml │ └── release.yml ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── .npmrc ├── .prettierrc.js ├── README.md ├── apps ├── app │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── next-env.d.ts │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── public │ │ ├── apple-touch-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon.ico │ │ ├── images │ │ │ ├── features │ │ │ │ ├── next-js.svg │ │ │ │ ├── nextjs.png │ │ │ │ ├── seo.png │ │ │ │ └── stripe.png │ │ │ ├── logo-background.png │ │ │ ├── logo.png │ │ │ ├── og-image.png │ │ │ └── thumbnail.png │ │ └── site.webmanifest │ ├── src │ │ ├── app │ │ │ ├── (auth) │ │ │ │ ├── layout.tsx │ │ │ │ └── login │ │ │ │ │ └── page.tsx │ │ │ ├── (dashboard) │ │ │ │ ├── account │ │ │ │ │ ├── loading.tsx │ │ │ │ │ └── page.tsx │ │ │ │ ├── error.tsx │ │ │ │ ├── layout.tsx │ │ │ │ ├── page.tsx │ │ │ │ └── sidebar.tsx │ │ │ ├── api │ │ │ │ ├── auth │ │ │ │ │ └── [...nextauth] │ │ │ │ │ │ └── route.ts │ │ │ │ └── webhooks │ │ │ │ │ └── stripe │ │ │ │ │ └── route.ts │ │ │ ├── layout.tsx │ │ │ ├── not-found.tsx │ │ │ ├── providers.tsx │ │ │ └── sitemap.ts │ │ ├── assets │ │ │ ├── fonts │ │ │ │ └── Acorn-Bold.woff2 │ │ │ └── images │ │ │ │ └── no-sites-illustration.svg │ │ ├── components │ │ │ ├── layout │ │ │ │ ├── app-page-layout.tsx │ │ │ │ └── form-card-layout.tsx │ │ │ └── theme-toggle.tsx │ │ ├── config │ │ │ ├── config.ts │ │ │ ├── index.ts │ │ │ └── site.ts │ │ ├── lib │ │ │ └── stripe.ts │ │ ├── middleware.ts │ │ ├── modules │ │ │ ├── auth │ │ │ │ ├── actions.ts │ │ │ │ ├── components │ │ │ │ │ ├── account-details.tsx │ │ │ │ │ ├── auth-login-error.tsx │ │ │ │ │ ├── email-login-button.tsx │ │ │ │ │ ├── github-login-button.tsx │ │ │ │ │ ├── google-login-button.tsx │ │ │ │ │ └── logout-button.tsx │ │ │ │ ├── config.ts │ │ │ │ └── services.ts │ │ │ └── payment │ │ │ │ ├── actions.ts │ │ │ │ ├── components │ │ │ │ ├── invoices-list.tsx │ │ │ │ ├── pricing-plan-card.tsx │ │ │ │ ├── subscriptions-list.tsx │ │ │ │ └── upgrade-plan-modal.tsx │ │ │ │ └── services.ts │ │ ├── styles │ │ │ └── fonts.ts │ │ ├── types │ │ │ └── index.ts │ │ └── utils │ │ │ └── index.ts │ ├── tailwind.config.ts │ ├── tsconfig.json │ └── tsconfig.tsbuildinfo └── marketing │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── content │ └── posts │ │ └── nextj.mdx │ ├── next-env.d.ts │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── public │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon.ico │ ├── images │ │ ├── features │ │ │ ├── next-js.svg │ │ │ ├── nextjs.png │ │ │ ├── seo.png │ │ │ └── stripe.png │ │ ├── logo-background.png │ │ ├── logo.png │ │ ├── og-image.png │ │ └── thumbnail.png │ └── site.webmanifest │ ├── src │ ├── app │ │ ├── blog │ │ │ ├── [postSlug] │ │ │ │ ├── layout.tsx │ │ │ │ └── page.tsx │ │ │ ├── page.tsx │ │ │ ├── post-list-item.tsx │ │ │ ├── posts-explorer.tsx │ │ │ └── posts-list.tsx │ │ ├── layout.tsx │ │ ├── not-found.tsx │ │ ├── page.tsx │ │ ├── pricing │ │ │ ├── faq.tsx │ │ │ ├── page.tsx │ │ │ ├── pricing-plan.tsx │ │ │ ├── pricing-plans.tsx │ │ │ └── pricing.tsx │ │ ├── providers.tsx │ │ └── sitemap.ts │ ├── assets │ │ ├── fonts │ │ │ └── Acorn-Bold.woff2 │ │ └── images │ │ │ └── companies │ │ │ ├── next-js.tsx │ │ │ ├── pioneer.tsx │ │ │ ├── prisma.tsx │ │ │ ├── vercel.tsx │ │ │ └── y-combinator.tsx │ ├── components │ │ ├── banner.tsx │ │ ├── call-to-action.tsx │ │ ├── collect-emails-modal.tsx │ │ ├── features.tsx │ │ ├── footer.tsx │ │ ├── header.tsx │ │ ├── hero.tsx │ │ ├── mdx.tsx │ │ ├── sites-grid.tsx │ │ ├── tags-select.tsx │ │ ├── testimonials.tsx │ │ └── theme-toggle.tsx │ ├── config │ │ ├── constants.ts │ │ ├── index.ts │ │ └── site-config.tsx │ ├── hooks │ │ └── use-scroll.ts │ ├── lib │ │ ├── content.ts │ │ └── posts.ts │ ├── modules │ │ └── email │ │ │ └── actions.ts │ ├── styles │ │ ├── fonts.ts │ │ └── globals.css │ └── types │ │ ├── index.d.ts │ │ └── post.d.ts │ ├── tailwind.config.ts │ ├── tsconfig.json │ └── tsconfig.tsbuildinfo ├── commitlint.config.js ├── package.json ├── packages ├── database │ ├── .eslintrc.js │ ├── .gitignore │ ├── package.json │ ├── prisma │ │ └── schema.prisma │ ├── src │ │ ├── client.ts │ │ ├── index.ts │ │ └── seed.ts │ ├── tsconfig.json │ └── tsup.config.ts ├── eslint-config │ ├── CHANGELOG.md │ ├── README.md │ ├── basic.js │ ├── library.js │ ├── next.js │ ├── package.json │ └── react.js ├── tailwind-config │ ├── CHANGELOG.md │ ├── package.json │ └── tailwind.config.ts ├── ts-config │ ├── CHANGELOG.md │ ├── base.json │ ├── nextjs.json │ ├── package.json │ └── react-library.json ├── types │ ├── CHANGELOG.md │ ├── database.d.ts │ └── package.json ├── ui │ ├── .eslintrc.js │ ├── CHANGELOG.md │ ├── components.json │ ├── package.json │ ├── postcss.config.js │ ├── src │ │ ├── components │ │ │ ├── accordion.tsx │ │ │ ├── alert.tsx │ │ │ ├── badge.tsx │ │ │ ├── button.tsx │ │ │ ├── command.tsx │ │ │ ├── dialog.tsx │ │ │ ├── form.tsx │ │ │ ├── input.tsx │ │ │ ├── label.tsx │ │ │ ├── loading-dots │ │ │ │ ├── index.ts │ │ │ │ ├── loading-dots.module.css │ │ │ │ └── loading-dots.tsx │ │ │ ├── multi-select-freesolo.tsx │ │ │ ├── multi-select.tsx │ │ │ ├── popover.tsx │ │ │ ├── radio-group.tsx │ │ │ ├── separator.tsx │ │ │ ├── sheet.tsx │ │ │ ├── skeleton.tsx │ │ │ ├── switch.tsx │ │ │ ├── table.tsx │ │ │ ├── textarea.tsx │ │ │ ├── toast.tsx │ │ │ ├── toaster.tsx │ │ │ └── toggle.tsx │ │ ├── hooks │ │ │ ├── index.ts │ │ │ └── use-toast.ts │ │ ├── icons │ │ │ ├── google-icon.tsx │ │ │ ├── index.tsx │ │ │ └── npm-icon.tsx │ │ ├── index.tsx │ │ └── styles │ │ │ └── shared-globals.css │ ├── tailwind.config.ts │ └── tsconfig.json └── utils │ ├── .eslintrc.js │ ├── CHANGELOG.md │ ├── package.json │ ├── src │ ├── array.ts │ ├── classes.ts │ ├── date.ts │ ├── fetcher.ts │ ├── index.ts │ ├── string-replace.ts │ └── tags.ts │ ├── tsconfig.json │ └── tsup.config.ts ├── tsconfig.json ├── turbo.json └── yarn.lock /.changeset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/.changeset/README.md -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require("@turbocharger/eslint-config/basic"); 2 | -------------------------------------------------------------------------------- /.github/workflows/code-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/.github/workflows/code-check.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | npx lint-staged 5 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | auto-install-peers = true 2 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/README.md -------------------------------------------------------------------------------- /apps/app/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: ["@turbocharger/eslint-config/basic"], 3 | }; 4 | -------------------------------------------------------------------------------- /apps/app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/.gitignore -------------------------------------------------------------------------------- /apps/app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/README.md -------------------------------------------------------------------------------- /apps/app/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/next-env.d.ts -------------------------------------------------------------------------------- /apps/app/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/next.config.js -------------------------------------------------------------------------------- /apps/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/package.json -------------------------------------------------------------------------------- /apps/app/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/postcss.config.js -------------------------------------------------------------------------------- /apps/app/public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/public/apple-touch-icon.png -------------------------------------------------------------------------------- /apps/app/public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/public/favicon-16x16.png -------------------------------------------------------------------------------- /apps/app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/public/favicon.ico -------------------------------------------------------------------------------- /apps/app/public/images/features/next-js.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/public/images/features/next-js.svg -------------------------------------------------------------------------------- /apps/app/public/images/features/nextjs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/public/images/features/nextjs.png -------------------------------------------------------------------------------- /apps/app/public/images/features/seo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/public/images/features/seo.png -------------------------------------------------------------------------------- /apps/app/public/images/features/stripe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/public/images/features/stripe.png -------------------------------------------------------------------------------- /apps/app/public/images/logo-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/public/images/logo-background.png -------------------------------------------------------------------------------- /apps/app/public/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/public/images/logo.png -------------------------------------------------------------------------------- /apps/app/public/images/og-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/public/images/og-image.png -------------------------------------------------------------------------------- /apps/app/public/images/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/public/images/thumbnail.png -------------------------------------------------------------------------------- /apps/app/public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/public/site.webmanifest -------------------------------------------------------------------------------- /apps/app/src/app/(auth)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/src/app/(auth)/layout.tsx -------------------------------------------------------------------------------- /apps/app/src/app/(auth)/login/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/src/app/(auth)/login/page.tsx -------------------------------------------------------------------------------- /apps/app/src/app/(dashboard)/account/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/src/app/(dashboard)/account/loading.tsx -------------------------------------------------------------------------------- /apps/app/src/app/(dashboard)/account/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/src/app/(dashboard)/account/page.tsx -------------------------------------------------------------------------------- /apps/app/src/app/(dashboard)/error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/src/app/(dashboard)/error.tsx -------------------------------------------------------------------------------- /apps/app/src/app/(dashboard)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/src/app/(dashboard)/layout.tsx -------------------------------------------------------------------------------- /apps/app/src/app/(dashboard)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/src/app/(dashboard)/page.tsx -------------------------------------------------------------------------------- /apps/app/src/app/(dashboard)/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/src/app/(dashboard)/sidebar.tsx -------------------------------------------------------------------------------- /apps/app/src/app/api/auth/[...nextauth]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/src/app/api/auth/[...nextauth]/route.ts -------------------------------------------------------------------------------- /apps/app/src/app/api/webhooks/stripe/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/src/app/api/webhooks/stripe/route.ts -------------------------------------------------------------------------------- /apps/app/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/src/app/layout.tsx -------------------------------------------------------------------------------- /apps/app/src/app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/src/app/not-found.tsx -------------------------------------------------------------------------------- /apps/app/src/app/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/src/app/providers.tsx -------------------------------------------------------------------------------- /apps/app/src/app/sitemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/src/app/sitemap.ts -------------------------------------------------------------------------------- /apps/app/src/assets/fonts/Acorn-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/src/assets/fonts/Acorn-Bold.woff2 -------------------------------------------------------------------------------- /apps/app/src/assets/images/no-sites-illustration.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/src/assets/images/no-sites-illustration.svg -------------------------------------------------------------------------------- /apps/app/src/components/layout/app-page-layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/src/components/layout/app-page-layout.tsx -------------------------------------------------------------------------------- /apps/app/src/components/layout/form-card-layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/src/components/layout/form-card-layout.tsx -------------------------------------------------------------------------------- /apps/app/src/components/theme-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/src/components/theme-toggle.tsx -------------------------------------------------------------------------------- /apps/app/src/config/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/src/config/config.ts -------------------------------------------------------------------------------- /apps/app/src/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/src/config/index.ts -------------------------------------------------------------------------------- /apps/app/src/config/site.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/src/config/site.ts -------------------------------------------------------------------------------- /apps/app/src/lib/stripe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/src/lib/stripe.ts -------------------------------------------------------------------------------- /apps/app/src/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/src/middleware.ts -------------------------------------------------------------------------------- /apps/app/src/modules/auth/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/src/modules/auth/actions.ts -------------------------------------------------------------------------------- /apps/app/src/modules/auth/components/account-details.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/src/modules/auth/components/account-details.tsx -------------------------------------------------------------------------------- /apps/app/src/modules/auth/components/auth-login-error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/src/modules/auth/components/auth-login-error.tsx -------------------------------------------------------------------------------- /apps/app/src/modules/auth/components/email-login-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/src/modules/auth/components/email-login-button.tsx -------------------------------------------------------------------------------- /apps/app/src/modules/auth/components/github-login-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/src/modules/auth/components/github-login-button.tsx -------------------------------------------------------------------------------- /apps/app/src/modules/auth/components/google-login-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/src/modules/auth/components/google-login-button.tsx -------------------------------------------------------------------------------- /apps/app/src/modules/auth/components/logout-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/src/modules/auth/components/logout-button.tsx -------------------------------------------------------------------------------- /apps/app/src/modules/auth/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/src/modules/auth/config.ts -------------------------------------------------------------------------------- /apps/app/src/modules/auth/services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/src/modules/auth/services.ts -------------------------------------------------------------------------------- /apps/app/src/modules/payment/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/src/modules/payment/actions.ts -------------------------------------------------------------------------------- /apps/app/src/modules/payment/components/invoices-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/src/modules/payment/components/invoices-list.tsx -------------------------------------------------------------------------------- /apps/app/src/modules/payment/components/pricing-plan-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/src/modules/payment/components/pricing-plan-card.tsx -------------------------------------------------------------------------------- /apps/app/src/modules/payment/components/subscriptions-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/src/modules/payment/components/subscriptions-list.tsx -------------------------------------------------------------------------------- /apps/app/src/modules/payment/components/upgrade-plan-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/src/modules/payment/components/upgrade-plan-modal.tsx -------------------------------------------------------------------------------- /apps/app/src/modules/payment/services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/src/modules/payment/services.ts -------------------------------------------------------------------------------- /apps/app/src/styles/fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/src/styles/fonts.ts -------------------------------------------------------------------------------- /apps/app/src/types/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/app/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/src/utils/index.ts -------------------------------------------------------------------------------- /apps/app/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/tailwind.config.ts -------------------------------------------------------------------------------- /apps/app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/tsconfig.json -------------------------------------------------------------------------------- /apps/app/tsconfig.tsbuildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/app/tsconfig.tsbuildinfo -------------------------------------------------------------------------------- /apps/marketing/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: ["@turbocharger/eslint-config/basic"], 3 | }; 4 | -------------------------------------------------------------------------------- /apps/marketing/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/.gitignore -------------------------------------------------------------------------------- /apps/marketing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/README.md -------------------------------------------------------------------------------- /apps/marketing/content/posts/nextj.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/content/posts/nextj.mdx -------------------------------------------------------------------------------- /apps/marketing/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/next-env.d.ts -------------------------------------------------------------------------------- /apps/marketing/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/next.config.js -------------------------------------------------------------------------------- /apps/marketing/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/package.json -------------------------------------------------------------------------------- /apps/marketing/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/postcss.config.js -------------------------------------------------------------------------------- /apps/marketing/public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/public/apple-touch-icon.png -------------------------------------------------------------------------------- /apps/marketing/public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/public/favicon-16x16.png -------------------------------------------------------------------------------- /apps/marketing/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/public/favicon.ico -------------------------------------------------------------------------------- /apps/marketing/public/images/features/next-js.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/public/images/features/next-js.svg -------------------------------------------------------------------------------- /apps/marketing/public/images/features/nextjs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/public/images/features/nextjs.png -------------------------------------------------------------------------------- /apps/marketing/public/images/features/seo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/public/images/features/seo.png -------------------------------------------------------------------------------- /apps/marketing/public/images/features/stripe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/public/images/features/stripe.png -------------------------------------------------------------------------------- /apps/marketing/public/images/logo-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/public/images/logo-background.png -------------------------------------------------------------------------------- /apps/marketing/public/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/public/images/logo.png -------------------------------------------------------------------------------- /apps/marketing/public/images/og-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/public/images/og-image.png -------------------------------------------------------------------------------- /apps/marketing/public/images/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/public/images/thumbnail.png -------------------------------------------------------------------------------- /apps/marketing/public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/public/site.webmanifest -------------------------------------------------------------------------------- /apps/marketing/src/app/blog/[postSlug]/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/src/app/blog/[postSlug]/layout.tsx -------------------------------------------------------------------------------- /apps/marketing/src/app/blog/[postSlug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/src/app/blog/[postSlug]/page.tsx -------------------------------------------------------------------------------- /apps/marketing/src/app/blog/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/src/app/blog/page.tsx -------------------------------------------------------------------------------- /apps/marketing/src/app/blog/post-list-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/src/app/blog/post-list-item.tsx -------------------------------------------------------------------------------- /apps/marketing/src/app/blog/posts-explorer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/src/app/blog/posts-explorer.tsx -------------------------------------------------------------------------------- /apps/marketing/src/app/blog/posts-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/src/app/blog/posts-list.tsx -------------------------------------------------------------------------------- /apps/marketing/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/src/app/layout.tsx -------------------------------------------------------------------------------- /apps/marketing/src/app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/src/app/not-found.tsx -------------------------------------------------------------------------------- /apps/marketing/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/src/app/page.tsx -------------------------------------------------------------------------------- /apps/marketing/src/app/pricing/faq.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/src/app/pricing/faq.tsx -------------------------------------------------------------------------------- /apps/marketing/src/app/pricing/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/src/app/pricing/page.tsx -------------------------------------------------------------------------------- /apps/marketing/src/app/pricing/pricing-plan.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/src/app/pricing/pricing-plan.tsx -------------------------------------------------------------------------------- /apps/marketing/src/app/pricing/pricing-plans.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/src/app/pricing/pricing-plans.tsx -------------------------------------------------------------------------------- /apps/marketing/src/app/pricing/pricing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/src/app/pricing/pricing.tsx -------------------------------------------------------------------------------- /apps/marketing/src/app/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/src/app/providers.tsx -------------------------------------------------------------------------------- /apps/marketing/src/app/sitemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/src/app/sitemap.ts -------------------------------------------------------------------------------- /apps/marketing/src/assets/fonts/Acorn-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/src/assets/fonts/Acorn-Bold.woff2 -------------------------------------------------------------------------------- /apps/marketing/src/assets/images/companies/next-js.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/src/assets/images/companies/next-js.tsx -------------------------------------------------------------------------------- /apps/marketing/src/assets/images/companies/pioneer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/src/assets/images/companies/pioneer.tsx -------------------------------------------------------------------------------- /apps/marketing/src/assets/images/companies/prisma.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/src/assets/images/companies/prisma.tsx -------------------------------------------------------------------------------- /apps/marketing/src/assets/images/companies/vercel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/src/assets/images/companies/vercel.tsx -------------------------------------------------------------------------------- /apps/marketing/src/assets/images/companies/y-combinator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/src/assets/images/companies/y-combinator.tsx -------------------------------------------------------------------------------- /apps/marketing/src/components/banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/src/components/banner.tsx -------------------------------------------------------------------------------- /apps/marketing/src/components/call-to-action.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/src/components/call-to-action.tsx -------------------------------------------------------------------------------- /apps/marketing/src/components/collect-emails-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/src/components/collect-emails-modal.tsx -------------------------------------------------------------------------------- /apps/marketing/src/components/features.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/src/components/features.tsx -------------------------------------------------------------------------------- /apps/marketing/src/components/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/src/components/footer.tsx -------------------------------------------------------------------------------- /apps/marketing/src/components/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/src/components/header.tsx -------------------------------------------------------------------------------- /apps/marketing/src/components/hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/src/components/hero.tsx -------------------------------------------------------------------------------- /apps/marketing/src/components/mdx.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/src/components/mdx.tsx -------------------------------------------------------------------------------- /apps/marketing/src/components/sites-grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/src/components/sites-grid.tsx -------------------------------------------------------------------------------- /apps/marketing/src/components/tags-select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/src/components/tags-select.tsx -------------------------------------------------------------------------------- /apps/marketing/src/components/testimonials.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/src/components/testimonials.tsx -------------------------------------------------------------------------------- /apps/marketing/src/components/theme-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/src/components/theme-toggle.tsx -------------------------------------------------------------------------------- /apps/marketing/src/config/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/src/config/constants.ts -------------------------------------------------------------------------------- /apps/marketing/src/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/src/config/index.ts -------------------------------------------------------------------------------- /apps/marketing/src/config/site-config.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/src/config/site-config.tsx -------------------------------------------------------------------------------- /apps/marketing/src/hooks/use-scroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/src/hooks/use-scroll.ts -------------------------------------------------------------------------------- /apps/marketing/src/lib/content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/src/lib/content.ts -------------------------------------------------------------------------------- /apps/marketing/src/lib/posts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/src/lib/posts.ts -------------------------------------------------------------------------------- /apps/marketing/src/modules/email/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/src/modules/email/actions.ts -------------------------------------------------------------------------------- /apps/marketing/src/styles/fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/src/styles/fonts.ts -------------------------------------------------------------------------------- /apps/marketing/src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/src/styles/globals.css -------------------------------------------------------------------------------- /apps/marketing/src/types/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./post.d.ts"; 2 | -------------------------------------------------------------------------------- /apps/marketing/src/types/post.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/src/types/post.d.ts -------------------------------------------------------------------------------- /apps/marketing/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/tailwind.config.ts -------------------------------------------------------------------------------- /apps/marketing/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/tsconfig.json -------------------------------------------------------------------------------- /apps/marketing/tsconfig.tsbuildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/apps/marketing/tsconfig.tsbuildinfo -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/commitlint.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/package.json -------------------------------------------------------------------------------- /packages/database/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require("@turbocharger/eslint-config/basic"); 2 | -------------------------------------------------------------------------------- /packages/database/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/database/.gitignore -------------------------------------------------------------------------------- /packages/database/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/database/package.json -------------------------------------------------------------------------------- /packages/database/prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/database/prisma/schema.prisma -------------------------------------------------------------------------------- /packages/database/src/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/database/src/client.ts -------------------------------------------------------------------------------- /packages/database/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./client"; 2 | -------------------------------------------------------------------------------- /packages/database/src/seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/database/src/seed.ts -------------------------------------------------------------------------------- /packages/database/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/database/tsconfig.json -------------------------------------------------------------------------------- /packages/database/tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/database/tsup.config.ts -------------------------------------------------------------------------------- /packages/eslint-config/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/eslint-config/CHANGELOG.md -------------------------------------------------------------------------------- /packages/eslint-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/eslint-config/README.md -------------------------------------------------------------------------------- /packages/eslint-config/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/eslint-config/basic.js -------------------------------------------------------------------------------- /packages/eslint-config/library.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/eslint-config/library.js -------------------------------------------------------------------------------- /packages/eslint-config/next.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/eslint-config/next.js -------------------------------------------------------------------------------- /packages/eslint-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/eslint-config/package.json -------------------------------------------------------------------------------- /packages/eslint-config/react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/eslint-config/react.js -------------------------------------------------------------------------------- /packages/tailwind-config/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/tailwind-config/CHANGELOG.md -------------------------------------------------------------------------------- /packages/tailwind-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/tailwind-config/package.json -------------------------------------------------------------------------------- /packages/tailwind-config/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/tailwind-config/tailwind.config.ts -------------------------------------------------------------------------------- /packages/ts-config/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/ts-config/CHANGELOG.md -------------------------------------------------------------------------------- /packages/ts-config/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/ts-config/base.json -------------------------------------------------------------------------------- /packages/ts-config/nextjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/ts-config/nextjs.json -------------------------------------------------------------------------------- /packages/ts-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/ts-config/package.json -------------------------------------------------------------------------------- /packages/ts-config/react-library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/ts-config/react-library.json -------------------------------------------------------------------------------- /packages/types/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/types/CHANGELOG.md -------------------------------------------------------------------------------- /packages/types/database.d.ts: -------------------------------------------------------------------------------- 1 | export * from "@turbocharger/database"; 2 | -------------------------------------------------------------------------------- /packages/types/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/types/package.json -------------------------------------------------------------------------------- /packages/ui/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/ui/.eslintrc.js -------------------------------------------------------------------------------- /packages/ui/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/ui/CHANGELOG.md -------------------------------------------------------------------------------- /packages/ui/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/ui/components.json -------------------------------------------------------------------------------- /packages/ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/ui/package.json -------------------------------------------------------------------------------- /packages/ui/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/ui/postcss.config.js -------------------------------------------------------------------------------- /packages/ui/src/components/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/ui/src/components/accordion.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/ui/src/components/alert.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/ui/src/components/badge.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/ui/src/components/button.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/ui/src/components/command.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/ui/src/components/dialog.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/ui/src/components/form.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/ui/src/components/input.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/ui/src/components/label.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/loading-dots/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./loading-dots"; 2 | -------------------------------------------------------------------------------- /packages/ui/src/components/loading-dots/loading-dots.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/ui/src/components/loading-dots/loading-dots.module.css -------------------------------------------------------------------------------- /packages/ui/src/components/loading-dots/loading-dots.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/ui/src/components/loading-dots/loading-dots.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/multi-select-freesolo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/ui/src/components/multi-select-freesolo.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/multi-select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/ui/src/components/multi-select.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/ui/src/components/popover.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/ui/src/components/radio-group.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/ui/src/components/separator.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/ui/src/components/sheet.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/ui/src/components/skeleton.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/ui/src/components/switch.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/ui/src/components/table.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/ui/src/components/textarea.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/ui/src/components/toast.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/ui/src/components/toaster.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/ui/src/components/toggle.tsx -------------------------------------------------------------------------------- /packages/ui/src/hooks/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./use-toast"; 2 | -------------------------------------------------------------------------------- /packages/ui/src/hooks/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/ui/src/hooks/use-toast.ts -------------------------------------------------------------------------------- /packages/ui/src/icons/google-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/ui/src/icons/google-icon.tsx -------------------------------------------------------------------------------- /packages/ui/src/icons/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/ui/src/icons/index.tsx -------------------------------------------------------------------------------- /packages/ui/src/icons/npm-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/ui/src/icons/npm-icon.tsx -------------------------------------------------------------------------------- /packages/ui/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/ui/src/index.tsx -------------------------------------------------------------------------------- /packages/ui/src/styles/shared-globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/ui/src/styles/shared-globals.css -------------------------------------------------------------------------------- /packages/ui/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/ui/tailwind.config.ts -------------------------------------------------------------------------------- /packages/ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/ui/tsconfig.json -------------------------------------------------------------------------------- /packages/utils/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/utils/.eslintrc.js -------------------------------------------------------------------------------- /packages/utils/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/utils/CHANGELOG.md -------------------------------------------------------------------------------- /packages/utils/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/utils/package.json -------------------------------------------------------------------------------- /packages/utils/src/array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/utils/src/array.ts -------------------------------------------------------------------------------- /packages/utils/src/classes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/utils/src/classes.ts -------------------------------------------------------------------------------- /packages/utils/src/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/utils/src/date.ts -------------------------------------------------------------------------------- /packages/utils/src/fetcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/utils/src/fetcher.ts -------------------------------------------------------------------------------- /packages/utils/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/utils/src/index.ts -------------------------------------------------------------------------------- /packages/utils/src/string-replace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/utils/src/string-replace.ts -------------------------------------------------------------------------------- /packages/utils/src/tags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/utils/src/tags.ts -------------------------------------------------------------------------------- /packages/utils/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/utils/tsconfig.json -------------------------------------------------------------------------------- /packages/utils/tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/packages/utils/tsup.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@turbocharger/ts-config/base.json" 3 | } 4 | -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/turbo.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdibha/turbocharger/HEAD/yarn.lock --------------------------------------------------------------------------------