├── .env.example ├── .eslintrc.json ├── .gitignore ├── .vscode └── launch.json ├── README.md ├── actions └── login.tsx ├── app ├── (main) │ └── page.tsx ├── api │ ├── auth │ │ ├── [...nextauth] │ │ │ └── route.tsx │ │ ├── new-password │ │ │ └── route.tsx │ │ ├── reset │ │ │ └── route.tsx │ │ ├── user │ │ │ └── route.ts │ │ └── verification │ │ │ └── route.tsx │ ├── resend │ │ └── route.ts │ ├── stripe │ │ └── route.tsx │ └── webhook │ │ ├── route.tsx │ │ └── stripe │ │ └── route.ts ├── auth │ ├── new-password │ │ └── page.tsx │ ├── new-verification │ │ └── page.tsx │ └── reset │ │ └── page.tsx ├── component │ └── user.tsx ├── dashboard │ ├── billing │ │ └── page.tsx │ ├── component │ │ ├── mail.tsx │ │ ├── manage-subscription.tsx │ │ ├── search.tsx │ │ └── user-menu.tsx │ └── page.tsx ├── favicon.ico ├── globals.css ├── layout.tsx └── signup │ └── page.tsx ├── auth.config.ts ├── auth.ts ├── components.json ├── components ├── internal │ ├── FormError.tsx │ ├── FormSuccess.tsx │ └── Forms │ │ ├── LoginForm.tsx │ │ ├── NewPasswordForm.tsx │ │ ├── NewVerificationForm.tsx │ │ ├── ResetForm.tsx │ │ └── SignupForm.tsx └── ui │ ├── alert.tsx │ ├── avatar.tsx │ ├── button.tsx │ ├── card.tsx │ ├── dropdown-menu.tsx │ ├── form.tsx │ ├── input.tsx │ └── label.tsx ├── config.ts ├── contribution.md ├── controllers ├── PasswordResetTokenController.tsx ├── SubscriptionController.ts ├── UserController.ts └── VerficationTokenController.tsx ├── data ├── formstatus │ └── formStatusInterface.tsx ├── mail │ ├── mailImpl.tsx │ └── mailInterface.tsx ├── passwordResetToken │ ├── passwordResetTokenImpl.tsx │ └── passwordResetTokenInterface.tsx ├── subscription │ ├── subscriptionImpl.ts │ └── subscriptionInterface.ts ├── user │ ├── userImpl.ts │ └── userInterface.ts └── verificationToken │ ├── verificationTokenImpl.tsx │ └── verificationTokenInterface.tsx ├── enums └── UserRoleEnum.tsx ├── helpers └── errorHandler.tsx ├── lib ├── axios.ts ├── prisma.ts ├── resend.ts ├── stripe.ts ├── subscription.tsx └── utils.ts ├── middleware.ts ├── next-auth.d.ts ├── next-auth ├── auth-provider.tsx ├── config.ts ├── next-auth.d.ts └── utils.ts ├── next.config.js ├── next.config.mjs ├── package.json ├── postcss.config.js ├── prisma └── schema.prisma ├── public ├── next.svg └── vercel.svg ├── routes.tsx ├── schemas └── index.tsx ├── tailwind.config.ts ├── tsconfig.json └── utils ├── AllAPIRouteMapping.ts ├── emailTemplates.tsx ├── jsonUtils.ts ├── stringUtils.ts └── subscriptionPlans.tsx /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /actions/login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/actions/login.tsx -------------------------------------------------------------------------------- /app/(main)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/app/(main)/page.tsx -------------------------------------------------------------------------------- /app/api/auth/[...nextauth]/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/app/api/auth/[...nextauth]/route.tsx -------------------------------------------------------------------------------- /app/api/auth/new-password/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/app/api/auth/new-password/route.tsx -------------------------------------------------------------------------------- /app/api/auth/reset/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/app/api/auth/reset/route.tsx -------------------------------------------------------------------------------- /app/api/auth/user/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/app/api/auth/user/route.ts -------------------------------------------------------------------------------- /app/api/auth/verification/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/app/api/auth/verification/route.tsx -------------------------------------------------------------------------------- /app/api/resend/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/app/api/resend/route.ts -------------------------------------------------------------------------------- /app/api/stripe/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/app/api/stripe/route.tsx -------------------------------------------------------------------------------- /app/api/webhook/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/app/api/webhook/route.tsx -------------------------------------------------------------------------------- /app/api/webhook/stripe/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/app/api/webhook/stripe/route.ts -------------------------------------------------------------------------------- /app/auth/new-password/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/app/auth/new-password/page.tsx -------------------------------------------------------------------------------- /app/auth/new-verification/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/app/auth/new-verification/page.tsx -------------------------------------------------------------------------------- /app/auth/reset/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/app/auth/reset/page.tsx -------------------------------------------------------------------------------- /app/component/user.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/app/component/user.tsx -------------------------------------------------------------------------------- /app/dashboard/billing/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/app/dashboard/billing/page.tsx -------------------------------------------------------------------------------- /app/dashboard/component/mail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/app/dashboard/component/mail.tsx -------------------------------------------------------------------------------- /app/dashboard/component/manage-subscription.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/app/dashboard/component/manage-subscription.tsx -------------------------------------------------------------------------------- /app/dashboard/component/search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/app/dashboard/component/search.tsx -------------------------------------------------------------------------------- /app/dashboard/component/user-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/app/dashboard/component/user-menu.tsx -------------------------------------------------------------------------------- /app/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/app/dashboard/page.tsx -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/signup/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/app/signup/page.tsx -------------------------------------------------------------------------------- /auth.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/auth.config.ts -------------------------------------------------------------------------------- /auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/auth.ts -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/components.json -------------------------------------------------------------------------------- /components/internal/FormError.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/components/internal/FormError.tsx -------------------------------------------------------------------------------- /components/internal/FormSuccess.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/components/internal/FormSuccess.tsx -------------------------------------------------------------------------------- /components/internal/Forms/LoginForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/components/internal/Forms/LoginForm.tsx -------------------------------------------------------------------------------- /components/internal/Forms/NewPasswordForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/components/internal/Forms/NewPasswordForm.tsx -------------------------------------------------------------------------------- /components/internal/Forms/NewVerificationForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/components/internal/Forms/NewVerificationForm.tsx -------------------------------------------------------------------------------- /components/internal/Forms/ResetForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/components/internal/Forms/ResetForm.tsx -------------------------------------------------------------------------------- /components/internal/Forms/SignupForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/components/internal/Forms/SignupForm.tsx -------------------------------------------------------------------------------- /components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/components/ui/alert.tsx -------------------------------------------------------------------------------- /components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/components/ui/avatar.tsx -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/components/ui/card.tsx -------------------------------------------------------------------------------- /components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/components/ui/form.tsx -------------------------------------------------------------------------------- /components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/components/ui/input.tsx -------------------------------------------------------------------------------- /components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/components/ui/label.tsx -------------------------------------------------------------------------------- /config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/config.ts -------------------------------------------------------------------------------- /contribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/contribution.md -------------------------------------------------------------------------------- /controllers/PasswordResetTokenController.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/controllers/PasswordResetTokenController.tsx -------------------------------------------------------------------------------- /controllers/SubscriptionController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/controllers/SubscriptionController.ts -------------------------------------------------------------------------------- /controllers/UserController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/controllers/UserController.ts -------------------------------------------------------------------------------- /controllers/VerficationTokenController.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/controllers/VerficationTokenController.tsx -------------------------------------------------------------------------------- /data/formstatus/formStatusInterface.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/data/formstatus/formStatusInterface.tsx -------------------------------------------------------------------------------- /data/mail/mailImpl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/data/mail/mailImpl.tsx -------------------------------------------------------------------------------- /data/mail/mailInterface.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/data/mail/mailInterface.tsx -------------------------------------------------------------------------------- /data/passwordResetToken/passwordResetTokenImpl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/data/passwordResetToken/passwordResetTokenImpl.tsx -------------------------------------------------------------------------------- /data/passwordResetToken/passwordResetTokenInterface.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/data/passwordResetToken/passwordResetTokenInterface.tsx -------------------------------------------------------------------------------- /data/subscription/subscriptionImpl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/data/subscription/subscriptionImpl.ts -------------------------------------------------------------------------------- /data/subscription/subscriptionInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/data/subscription/subscriptionInterface.ts -------------------------------------------------------------------------------- /data/user/userImpl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/data/user/userImpl.ts -------------------------------------------------------------------------------- /data/user/userInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/data/user/userInterface.ts -------------------------------------------------------------------------------- /data/verificationToken/verificationTokenImpl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/data/verificationToken/verificationTokenImpl.tsx -------------------------------------------------------------------------------- /data/verificationToken/verificationTokenInterface.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/data/verificationToken/verificationTokenInterface.tsx -------------------------------------------------------------------------------- /enums/UserRoleEnum.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/enums/UserRoleEnum.tsx -------------------------------------------------------------------------------- /helpers/errorHandler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/helpers/errorHandler.tsx -------------------------------------------------------------------------------- /lib/axios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/lib/axios.ts -------------------------------------------------------------------------------- /lib/prisma.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/lib/prisma.ts -------------------------------------------------------------------------------- /lib/resend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/lib/resend.ts -------------------------------------------------------------------------------- /lib/stripe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/lib/stripe.ts -------------------------------------------------------------------------------- /lib/subscription.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/lib/subscription.tsx -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/middleware.ts -------------------------------------------------------------------------------- /next-auth.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/next-auth.d.ts -------------------------------------------------------------------------------- /next-auth/auth-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/next-auth/auth-provider.tsx -------------------------------------------------------------------------------- /next-auth/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/next-auth/config.ts -------------------------------------------------------------------------------- /next-auth/next-auth.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/next-auth/next-auth.d.ts -------------------------------------------------------------------------------- /next-auth/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/next-auth/utils.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/next.config.js -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/postcss.config.js -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/routes.tsx -------------------------------------------------------------------------------- /schemas/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/schemas/index.tsx -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/tsconfig.json -------------------------------------------------------------------------------- /utils/AllAPIRouteMapping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/utils/AllAPIRouteMapping.ts -------------------------------------------------------------------------------- /utils/emailTemplates.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/utils/emailTemplates.tsx -------------------------------------------------------------------------------- /utils/jsonUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/utils/jsonUtils.ts -------------------------------------------------------------------------------- /utils/stringUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/utils/stringUtils.ts -------------------------------------------------------------------------------- /utils/subscriptionPlans.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildFast10x/Nextjs-Boilerplate/HEAD/utils/subscriptionPlans.tsx --------------------------------------------------------------------------------