├── .eslintrc.json ├── .gitignore ├── README.md ├── app ├── api │ ├── auth │ │ └── [kindeAuth] │ │ │ └── route.ts │ └── webhook │ │ └── stripe │ │ └── route.ts ├── components │ ├── DashboardNav.tsx │ ├── Navbar.tsx │ ├── Submitbuttons.tsx │ ├── Themetoggle.tsx │ ├── UserNav.tsx │ └── theme-provider.tsx ├── dashboard │ ├── billing │ │ └── page.tsx │ ├── layout.tsx │ ├── new │ │ ├── [id] │ │ │ └── page.tsx │ │ └── page.tsx │ ├── page.tsx │ └── settings │ │ └── page.tsx ├── favicon.ico ├── globals.css ├── layout.tsx ├── lib │ ├── db.ts │ └── stripe.ts ├── page.tsx └── payment │ ├── cancelled │ └── page.tsx │ └── success │ └── page.tsx ├── components.json ├── components └── ui │ ├── avatar.tsx │ ├── button.tsx │ ├── card.tsx │ ├── dropdown-menu.tsx │ ├── input.tsx │ ├── label.tsx │ ├── select.tsx │ └── textarea.tsx ├── lib └── utils.ts ├── next.config.mjs ├── package.json ├── postcss.config.js ├── prisma └── schema.prisma ├── public ├── next.svg └── vercel.svg ├── tailwind.config.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ski043/Marshal-Saas/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ski043/Marshal-Saas/HEAD/README.md -------------------------------------------------------------------------------- /app/api/auth/[kindeAuth]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ski043/Marshal-Saas/HEAD/app/api/auth/[kindeAuth]/route.ts -------------------------------------------------------------------------------- /app/api/webhook/stripe/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ski043/Marshal-Saas/HEAD/app/api/webhook/stripe/route.ts -------------------------------------------------------------------------------- /app/components/DashboardNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ski043/Marshal-Saas/HEAD/app/components/DashboardNav.tsx -------------------------------------------------------------------------------- /app/components/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ski043/Marshal-Saas/HEAD/app/components/Navbar.tsx -------------------------------------------------------------------------------- /app/components/Submitbuttons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ski043/Marshal-Saas/HEAD/app/components/Submitbuttons.tsx -------------------------------------------------------------------------------- /app/components/Themetoggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ski043/Marshal-Saas/HEAD/app/components/Themetoggle.tsx -------------------------------------------------------------------------------- /app/components/UserNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ski043/Marshal-Saas/HEAD/app/components/UserNav.tsx -------------------------------------------------------------------------------- /app/components/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ski043/Marshal-Saas/HEAD/app/components/theme-provider.tsx -------------------------------------------------------------------------------- /app/dashboard/billing/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ski043/Marshal-Saas/HEAD/app/dashboard/billing/page.tsx -------------------------------------------------------------------------------- /app/dashboard/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ski043/Marshal-Saas/HEAD/app/dashboard/layout.tsx -------------------------------------------------------------------------------- /app/dashboard/new/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ski043/Marshal-Saas/HEAD/app/dashboard/new/[id]/page.tsx -------------------------------------------------------------------------------- /app/dashboard/new/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ski043/Marshal-Saas/HEAD/app/dashboard/new/page.tsx -------------------------------------------------------------------------------- /app/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ski043/Marshal-Saas/HEAD/app/dashboard/page.tsx -------------------------------------------------------------------------------- /app/dashboard/settings/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ski043/Marshal-Saas/HEAD/app/dashboard/settings/page.tsx -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ski043/Marshal-Saas/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ski043/Marshal-Saas/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ski043/Marshal-Saas/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/lib/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ski043/Marshal-Saas/HEAD/app/lib/db.ts -------------------------------------------------------------------------------- /app/lib/stripe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ski043/Marshal-Saas/HEAD/app/lib/stripe.ts -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ski043/Marshal-Saas/HEAD/app/page.tsx -------------------------------------------------------------------------------- /app/payment/cancelled/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ski043/Marshal-Saas/HEAD/app/payment/cancelled/page.tsx -------------------------------------------------------------------------------- /app/payment/success/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ski043/Marshal-Saas/HEAD/app/payment/success/page.tsx -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ski043/Marshal-Saas/HEAD/components.json -------------------------------------------------------------------------------- /components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ski043/Marshal-Saas/HEAD/components/ui/avatar.tsx -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ski043/Marshal-Saas/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ski043/Marshal-Saas/HEAD/components/ui/card.tsx -------------------------------------------------------------------------------- /components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ski043/Marshal-Saas/HEAD/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ski043/Marshal-Saas/HEAD/components/ui/input.tsx -------------------------------------------------------------------------------- /components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ski043/Marshal-Saas/HEAD/components/ui/label.tsx -------------------------------------------------------------------------------- /components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ski043/Marshal-Saas/HEAD/components/ui/select.tsx -------------------------------------------------------------------------------- /components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ski043/Marshal-Saas/HEAD/components/ui/textarea.tsx -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ski043/Marshal-Saas/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ski043/Marshal-Saas/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ski043/Marshal-Saas/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ski043/Marshal-Saas/HEAD/postcss.config.js -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ski043/Marshal-Saas/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ski043/Marshal-Saas/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ski043/Marshal-Saas/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ski043/Marshal-Saas/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ski043/Marshal-Saas/HEAD/tsconfig.json --------------------------------------------------------------------------------