├── .env.example ├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── README.md ├── actions └── auth │ ├── email-verification │ └── index.ts │ ├── index.ts │ ├── login │ └── index.ts │ ├── password-reset │ └── index.ts │ ├── register │ └── index.ts │ ├── settings │ └── index.ts │ ├── two-factor │ └── index.ts │ └── users │ └── index.ts ├── app ├── (site) │ └── page.tsx ├── api │ ├── auth │ │ └── [...nextauth] │ │ │ └── route.ts │ └── protected-api │ │ └── route.ts ├── auth │ ├── change-password │ │ └── page.tsx │ ├── login │ │ └── page.tsx │ ├── register │ │ └── page.tsx │ ├── reset-password │ │ └── page.tsx │ ├── settings │ │ └── page.tsx │ ├── users │ │ └── page.tsx │ └── verify-email │ │ └── page.tsx ├── example │ ├── editable-content │ │ └── page.tsx │ ├── multi-step-form │ │ └── campaign │ │ │ ├── _components │ │ │ ├── campaign-form.tsx │ │ │ ├── multi-step-campaign-config.tsx │ │ │ ├── multi-step-campaign.tsx │ │ │ ├── step-0.tsx │ │ │ ├── step-1.tsx │ │ │ ├── step-2.tsx │ │ │ └── step-3.tsx │ │ │ └── page.tsx │ └── web-site-builder │ │ └── campaign-hot-page │ │ ├── _components │ │ ├── campaign-builder.tsx │ │ ├── web-site-builder-campaign-config.tsx │ │ └── web-site-builder-campaign.tsx │ │ └── page.tsx ├── favicon.ico ├── globals.css └── layout.tsx ├── assets ├── EditableContent_view.jpg ├── SASS_DAY_3_Multi-Step-Form.jpg ├── docs.jpg ├── dois_fatores_page.jpg ├── forget_password_page.jpg ├── landing_page.jpg ├── light_landing_page.jpg ├── login_page.jpg ├── multi-step-form.jpg ├── register_page.jpg ├── resend-api-key.jpg └── wave.gif ├── auth.config.ts ├── auth.ts ├── biome.json ├── components.json ├── components ├── auth │ ├── auth-card.tsx │ ├── auth-form-message.tsx │ ├── change-password-form.tsx │ ├── email-verification-form.tsx │ ├── login-badge.tsx │ ├── login-button.tsx │ ├── login-form.tsx │ ├── login-social-button.tsx │ ├── logout-button.tsx │ ├── register-form.tsx │ ├── reset-password-form.tsx │ ├── social-login.tsx │ ├── user-settings-form.tsx │ ├── users-stats.tsx │ ├── users-table.tsx │ └── verification-email-template.tsx ├── icons │ └── index.tsx ├── providers │ └── theme-provider.tsx ├── site │ └── navbar.tsx ├── theme-toggle.tsx ├── ui │ ├── alert.tsx │ ├── avatar.tsx │ ├── badge.tsx │ ├── button.tsx │ ├── card.tsx │ ├── chart.tsx │ ├── checkbox.tsx │ ├── command.tsx │ ├── dialog.tsx │ ├── drawer.tsx │ ├── dropdown-menu.tsx │ ├── extension │ │ ├── editable-content │ │ │ └── index.tsx │ │ └── multi-step-form │ │ │ ├── color-picker.tsx │ │ │ ├── multi-step-form.tsx │ │ │ ├── multi-step-nav-buttons.tsx │ │ │ └── multi-step-navbar.tsx │ ├── form.tsx │ ├── input-otp.tsx │ ├── input.tsx │ ├── label.tsx │ ├── popover.tsx │ ├── select.tsx │ ├── separator.tsx │ ├── sheet.tsx │ ├── switch.tsx │ ├── table.tsx │ ├── textarea.tsx │ ├── toast.tsx │ ├── toaster.tsx │ ├── tooltip.tsx │ └── use-toast.ts └── web-site-builder │ ├── canva │ └── index.tsx │ ├── element-button │ └── index.tsx │ ├── index.tsx │ ├── main │ └── index.tsx │ ├── page │ └── index.tsx │ ├── preview │ ├── element-actions │ │ └── index.tsx │ └── index.tsx │ ├── sidebar-components │ ├── edit-component │ │ └── index.tsx │ ├── index.tsx │ └── sidebar-actions │ │ └── index.tsx │ └── sidebar-modules │ └── index.tsx ├── config └── routes │ └── index.ts ├── constants └── framer-motion │ └── index.ts ├── docker-compose.yml ├── hooks ├── multi-step-form │ └── index.tsx ├── use-current-user.tsx ├── use-media-query.tsx └── web-site-builder │ └── index.ts ├── lib ├── auth │ ├── index.ts │ ├── invalid-credentials.ts │ └── user-not-found.ts ├── db.ts ├── mail │ └── index.ts ├── multi-step-form │ └── index.tsx ├── route │ └── index.ts ├── use-forwarded-ref.tsx ├── utils.ts └── web-site-builder │ ├── elements │ ├── container-element │ │ └── index.tsx │ ├── index.ts │ ├── simple-banner-element │ │ └── index.tsx │ └── text-element │ │ └── index.tsx │ └── store │ ├── actions │ └── index.ts │ └── index.tsx ├── middleware.ts ├── next.config.mjs ├── package.json ├── pages ├── _meta.json └── docs │ ├── _meta.json │ ├── about.mdx │ ├── creator.mdx │ ├── db.mdx │ ├── docker.mdx │ ├── editable-content.mdx │ ├── email.mdx │ ├── get_started.mdx │ ├── index.mdx │ ├── initialize.mdx │ ├── multi-step-form.mdx │ ├── prisma.mdx │ ├── security.mdx │ └── variables.mdx ├── postcss.config.mjs ├── prisma └── schema.prisma ├── public ├── assets │ ├── EditableContent_view.jpg │ ├── SASS_DAY_3_Multi-Step-Form.jpg │ ├── dois_fatores_page.jpg │ ├── forget_password_page.jpg │ ├── landing_page.jpg │ ├── light_landing_page.jpg │ ├── login_page.jpg │ ├── multi-step-form.jpg │ ├── register_page.jpg │ ├── resend-api-key.jpg │ └── wave.gif ├── editor.svg ├── next.svg └── vercel.svg ├── routes.ts ├── schemas └── auth │ └── index.ts ├── services ├── auth │ ├── email-verification │ │ └── index.ts │ ├── index.ts │ ├── password-reset │ │ └── index.ts │ └── two-factor │ │ └── index.ts └── index.ts ├── tailwind.config.ts ├── theme.config.tsx ├── tsconfig.json └── types ├── environment.d.ts ├── multi-step-form └── index.ts ├── next-auth.d.ts ├── routes └── index.ts ├── shared └── index.ts └── web-site-builder ├── actions └── index.ts └── index.ts /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/README.md -------------------------------------------------------------------------------- /actions/auth/email-verification/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/actions/auth/email-verification/index.ts -------------------------------------------------------------------------------- /actions/auth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/actions/auth/index.ts -------------------------------------------------------------------------------- /actions/auth/login/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/actions/auth/login/index.ts -------------------------------------------------------------------------------- /actions/auth/password-reset/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/actions/auth/password-reset/index.ts -------------------------------------------------------------------------------- /actions/auth/register/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/actions/auth/register/index.ts -------------------------------------------------------------------------------- /actions/auth/settings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/actions/auth/settings/index.ts -------------------------------------------------------------------------------- /actions/auth/two-factor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/actions/auth/two-factor/index.ts -------------------------------------------------------------------------------- /actions/auth/users/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/actions/auth/users/index.ts -------------------------------------------------------------------------------- /app/(site)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/app/(site)/page.tsx -------------------------------------------------------------------------------- /app/api/auth/[...nextauth]/route.ts: -------------------------------------------------------------------------------- 1 | export { GET, POST } from "@/auth"; 2 | -------------------------------------------------------------------------------- /app/api/protected-api/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/app/api/protected-api/route.ts -------------------------------------------------------------------------------- /app/auth/change-password/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/app/auth/change-password/page.tsx -------------------------------------------------------------------------------- /app/auth/login/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/app/auth/login/page.tsx -------------------------------------------------------------------------------- /app/auth/register/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/app/auth/register/page.tsx -------------------------------------------------------------------------------- /app/auth/reset-password/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/app/auth/reset-password/page.tsx -------------------------------------------------------------------------------- /app/auth/settings/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/app/auth/settings/page.tsx -------------------------------------------------------------------------------- /app/auth/users/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/app/auth/users/page.tsx -------------------------------------------------------------------------------- /app/auth/verify-email/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/app/auth/verify-email/page.tsx -------------------------------------------------------------------------------- /app/example/editable-content/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/app/example/editable-content/page.tsx -------------------------------------------------------------------------------- /app/example/multi-step-form/campaign/_components/campaign-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/app/example/multi-step-form/campaign/_components/campaign-form.tsx -------------------------------------------------------------------------------- /app/example/multi-step-form/campaign/_components/multi-step-campaign-config.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/app/example/multi-step-form/campaign/_components/multi-step-campaign-config.tsx -------------------------------------------------------------------------------- /app/example/multi-step-form/campaign/_components/multi-step-campaign.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/app/example/multi-step-form/campaign/_components/multi-step-campaign.tsx -------------------------------------------------------------------------------- /app/example/multi-step-form/campaign/_components/step-0.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/app/example/multi-step-form/campaign/_components/step-0.tsx -------------------------------------------------------------------------------- /app/example/multi-step-form/campaign/_components/step-1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/app/example/multi-step-form/campaign/_components/step-1.tsx -------------------------------------------------------------------------------- /app/example/multi-step-form/campaign/_components/step-2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/app/example/multi-step-form/campaign/_components/step-2.tsx -------------------------------------------------------------------------------- /app/example/multi-step-form/campaign/_components/step-3.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/app/example/multi-step-form/campaign/_components/step-3.tsx -------------------------------------------------------------------------------- /app/example/multi-step-form/campaign/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/app/example/multi-step-form/campaign/page.tsx -------------------------------------------------------------------------------- /app/example/web-site-builder/campaign-hot-page/_components/campaign-builder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/app/example/web-site-builder/campaign-hot-page/_components/campaign-builder.tsx -------------------------------------------------------------------------------- /app/example/web-site-builder/campaign-hot-page/_components/web-site-builder-campaign-config.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/app/example/web-site-builder/campaign-hot-page/_components/web-site-builder-campaign-config.tsx -------------------------------------------------------------------------------- /app/example/web-site-builder/campaign-hot-page/_components/web-site-builder-campaign.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/app/example/web-site-builder/campaign-hot-page/_components/web-site-builder-campaign.tsx -------------------------------------------------------------------------------- /app/example/web-site-builder/campaign-hot-page/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/app/example/web-site-builder/campaign-hot-page/page.tsx -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /assets/EditableContent_view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/assets/EditableContent_view.jpg -------------------------------------------------------------------------------- /assets/SASS_DAY_3_Multi-Step-Form.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/assets/SASS_DAY_3_Multi-Step-Form.jpg -------------------------------------------------------------------------------- /assets/docs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/assets/docs.jpg -------------------------------------------------------------------------------- /assets/dois_fatores_page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/assets/dois_fatores_page.jpg -------------------------------------------------------------------------------- /assets/forget_password_page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/assets/forget_password_page.jpg -------------------------------------------------------------------------------- /assets/landing_page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/assets/landing_page.jpg -------------------------------------------------------------------------------- /assets/light_landing_page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/assets/light_landing_page.jpg -------------------------------------------------------------------------------- /assets/login_page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/assets/login_page.jpg -------------------------------------------------------------------------------- /assets/multi-step-form.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/assets/multi-step-form.jpg -------------------------------------------------------------------------------- /assets/register_page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/assets/register_page.jpg -------------------------------------------------------------------------------- /assets/resend-api-key.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/assets/resend-api-key.jpg -------------------------------------------------------------------------------- /assets/wave.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/assets/wave.gif -------------------------------------------------------------------------------- /auth.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/auth.config.ts -------------------------------------------------------------------------------- /auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/auth.ts -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/biome.json -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components.json -------------------------------------------------------------------------------- /components/auth/auth-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/auth/auth-card.tsx -------------------------------------------------------------------------------- /components/auth/auth-form-message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/auth/auth-form-message.tsx -------------------------------------------------------------------------------- /components/auth/change-password-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/auth/change-password-form.tsx -------------------------------------------------------------------------------- /components/auth/email-verification-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/auth/email-verification-form.tsx -------------------------------------------------------------------------------- /components/auth/login-badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/auth/login-badge.tsx -------------------------------------------------------------------------------- /components/auth/login-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/auth/login-button.tsx -------------------------------------------------------------------------------- /components/auth/login-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/auth/login-form.tsx -------------------------------------------------------------------------------- /components/auth/login-social-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/auth/login-social-button.tsx -------------------------------------------------------------------------------- /components/auth/logout-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/auth/logout-button.tsx -------------------------------------------------------------------------------- /components/auth/register-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/auth/register-form.tsx -------------------------------------------------------------------------------- /components/auth/reset-password-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/auth/reset-password-form.tsx -------------------------------------------------------------------------------- /components/auth/social-login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/auth/social-login.tsx -------------------------------------------------------------------------------- /components/auth/user-settings-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/auth/user-settings-form.tsx -------------------------------------------------------------------------------- /components/auth/users-stats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/auth/users-stats.tsx -------------------------------------------------------------------------------- /components/auth/users-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/auth/users-table.tsx -------------------------------------------------------------------------------- /components/auth/verification-email-template.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/auth/verification-email-template.tsx -------------------------------------------------------------------------------- /components/icons/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/icons/index.tsx -------------------------------------------------------------------------------- /components/providers/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/providers/theme-provider.tsx -------------------------------------------------------------------------------- /components/site/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/site/navbar.tsx -------------------------------------------------------------------------------- /components/theme-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/theme-toggle.tsx -------------------------------------------------------------------------------- /components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/ui/alert.tsx -------------------------------------------------------------------------------- /components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/ui/avatar.tsx -------------------------------------------------------------------------------- /components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/ui/badge.tsx -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/ui/card.tsx -------------------------------------------------------------------------------- /components/ui/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/ui/chart.tsx -------------------------------------------------------------------------------- /components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/ui/command.tsx -------------------------------------------------------------------------------- /components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/ui/dialog.tsx -------------------------------------------------------------------------------- /components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/ui/drawer.tsx -------------------------------------------------------------------------------- /components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /components/ui/extension/editable-content/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/ui/extension/editable-content/index.tsx -------------------------------------------------------------------------------- /components/ui/extension/multi-step-form/color-picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/ui/extension/multi-step-form/color-picker.tsx -------------------------------------------------------------------------------- /components/ui/extension/multi-step-form/multi-step-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/ui/extension/multi-step-form/multi-step-form.tsx -------------------------------------------------------------------------------- /components/ui/extension/multi-step-form/multi-step-nav-buttons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/ui/extension/multi-step-form/multi-step-nav-buttons.tsx -------------------------------------------------------------------------------- /components/ui/extension/multi-step-form/multi-step-navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/ui/extension/multi-step-form/multi-step-navbar.tsx -------------------------------------------------------------------------------- /components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/ui/form.tsx -------------------------------------------------------------------------------- /components/ui/input-otp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/ui/input-otp.tsx -------------------------------------------------------------------------------- /components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/ui/input.tsx -------------------------------------------------------------------------------- /components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/ui/label.tsx -------------------------------------------------------------------------------- /components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/ui/popover.tsx -------------------------------------------------------------------------------- /components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/ui/select.tsx -------------------------------------------------------------------------------- /components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/ui/separator.tsx -------------------------------------------------------------------------------- /components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/ui/sheet.tsx -------------------------------------------------------------------------------- /components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/ui/switch.tsx -------------------------------------------------------------------------------- /components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/ui/table.tsx -------------------------------------------------------------------------------- /components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/ui/textarea.tsx -------------------------------------------------------------------------------- /components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/ui/toast.tsx -------------------------------------------------------------------------------- /components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/ui/toaster.tsx -------------------------------------------------------------------------------- /components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /components/ui/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/ui/use-toast.ts -------------------------------------------------------------------------------- /components/web-site-builder/canva/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/web-site-builder/canva/index.tsx -------------------------------------------------------------------------------- /components/web-site-builder/element-button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/web-site-builder/element-button/index.tsx -------------------------------------------------------------------------------- /components/web-site-builder/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/web-site-builder/index.tsx -------------------------------------------------------------------------------- /components/web-site-builder/main/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/web-site-builder/main/index.tsx -------------------------------------------------------------------------------- /components/web-site-builder/page/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/web-site-builder/page/index.tsx -------------------------------------------------------------------------------- /components/web-site-builder/preview/element-actions/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/web-site-builder/preview/element-actions/index.tsx -------------------------------------------------------------------------------- /components/web-site-builder/preview/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/web-site-builder/preview/index.tsx -------------------------------------------------------------------------------- /components/web-site-builder/sidebar-components/edit-component/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/web-site-builder/sidebar-components/edit-component/index.tsx -------------------------------------------------------------------------------- /components/web-site-builder/sidebar-components/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/web-site-builder/sidebar-components/index.tsx -------------------------------------------------------------------------------- /components/web-site-builder/sidebar-components/sidebar-actions/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/web-site-builder/sidebar-components/sidebar-actions/index.tsx -------------------------------------------------------------------------------- /components/web-site-builder/sidebar-modules/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/components/web-site-builder/sidebar-modules/index.tsx -------------------------------------------------------------------------------- /config/routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/config/routes/index.ts -------------------------------------------------------------------------------- /constants/framer-motion/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/constants/framer-motion/index.ts -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /hooks/multi-step-form/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/hooks/multi-step-form/index.tsx -------------------------------------------------------------------------------- /hooks/use-current-user.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/hooks/use-current-user.tsx -------------------------------------------------------------------------------- /hooks/use-media-query.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/hooks/use-media-query.tsx -------------------------------------------------------------------------------- /hooks/web-site-builder/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/hooks/web-site-builder/index.ts -------------------------------------------------------------------------------- /lib/auth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/lib/auth/index.ts -------------------------------------------------------------------------------- /lib/auth/invalid-credentials.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/lib/auth/invalid-credentials.ts -------------------------------------------------------------------------------- /lib/auth/user-not-found.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/lib/auth/user-not-found.ts -------------------------------------------------------------------------------- /lib/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/lib/db.ts -------------------------------------------------------------------------------- /lib/mail/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/lib/mail/index.ts -------------------------------------------------------------------------------- /lib/multi-step-form/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/lib/multi-step-form/index.tsx -------------------------------------------------------------------------------- /lib/route/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/lib/route/index.ts -------------------------------------------------------------------------------- /lib/use-forwarded-ref.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/lib/use-forwarded-ref.tsx -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /lib/web-site-builder/elements/container-element/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/lib/web-site-builder/elements/container-element/index.tsx -------------------------------------------------------------------------------- /lib/web-site-builder/elements/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/lib/web-site-builder/elements/index.ts -------------------------------------------------------------------------------- /lib/web-site-builder/elements/simple-banner-element/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/lib/web-site-builder/elements/simple-banner-element/index.tsx -------------------------------------------------------------------------------- /lib/web-site-builder/elements/text-element/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/lib/web-site-builder/elements/text-element/index.tsx -------------------------------------------------------------------------------- /lib/web-site-builder/store/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/lib/web-site-builder/store/actions/index.ts -------------------------------------------------------------------------------- /lib/web-site-builder/store/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/lib/web-site-builder/store/index.tsx -------------------------------------------------------------------------------- /middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/middleware.ts -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/package.json -------------------------------------------------------------------------------- /pages/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/pages/_meta.json -------------------------------------------------------------------------------- /pages/docs/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/pages/docs/_meta.json -------------------------------------------------------------------------------- /pages/docs/about.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/pages/docs/about.mdx -------------------------------------------------------------------------------- /pages/docs/creator.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/pages/docs/creator.mdx -------------------------------------------------------------------------------- /pages/docs/db.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/pages/docs/db.mdx -------------------------------------------------------------------------------- /pages/docs/docker.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/pages/docs/docker.mdx -------------------------------------------------------------------------------- /pages/docs/editable-content.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/pages/docs/editable-content.mdx -------------------------------------------------------------------------------- /pages/docs/email.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/pages/docs/email.mdx -------------------------------------------------------------------------------- /pages/docs/get_started.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/pages/docs/get_started.mdx -------------------------------------------------------------------------------- /pages/docs/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/pages/docs/index.mdx -------------------------------------------------------------------------------- /pages/docs/initialize.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/pages/docs/initialize.mdx -------------------------------------------------------------------------------- /pages/docs/multi-step-form.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/pages/docs/multi-step-form.mdx -------------------------------------------------------------------------------- /pages/docs/prisma.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/pages/docs/prisma.mdx -------------------------------------------------------------------------------- /pages/docs/security.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/pages/docs/security.mdx -------------------------------------------------------------------------------- /pages/docs/variables.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/pages/docs/variables.mdx -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /public/assets/EditableContent_view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/public/assets/EditableContent_view.jpg -------------------------------------------------------------------------------- /public/assets/SASS_DAY_3_Multi-Step-Form.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/public/assets/SASS_DAY_3_Multi-Step-Form.jpg -------------------------------------------------------------------------------- /public/assets/dois_fatores_page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/public/assets/dois_fatores_page.jpg -------------------------------------------------------------------------------- /public/assets/forget_password_page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/public/assets/forget_password_page.jpg -------------------------------------------------------------------------------- /public/assets/landing_page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/public/assets/landing_page.jpg -------------------------------------------------------------------------------- /public/assets/light_landing_page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/public/assets/light_landing_page.jpg -------------------------------------------------------------------------------- /public/assets/login_page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/public/assets/login_page.jpg -------------------------------------------------------------------------------- /public/assets/multi-step-form.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/public/assets/multi-step-form.jpg -------------------------------------------------------------------------------- /public/assets/register_page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/public/assets/register_page.jpg -------------------------------------------------------------------------------- /public/assets/resend-api-key.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/public/assets/resend-api-key.jpg -------------------------------------------------------------------------------- /public/assets/wave.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/public/assets/wave.gif -------------------------------------------------------------------------------- /public/editor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/public/editor.svg -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/routes.ts -------------------------------------------------------------------------------- /schemas/auth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/schemas/auth/index.ts -------------------------------------------------------------------------------- /services/auth/email-verification/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/services/auth/email-verification/index.ts -------------------------------------------------------------------------------- /services/auth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/services/auth/index.ts -------------------------------------------------------------------------------- /services/auth/password-reset/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/services/auth/password-reset/index.ts -------------------------------------------------------------------------------- /services/auth/two-factor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/services/auth/two-factor/index.ts -------------------------------------------------------------------------------- /services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/services/index.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /theme.config.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/theme.config.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/environment.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/types/environment.d.ts -------------------------------------------------------------------------------- /types/multi-step-form/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/types/multi-step-form/index.ts -------------------------------------------------------------------------------- /types/next-auth.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/types/next-auth.d.ts -------------------------------------------------------------------------------- /types/routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/types/routes/index.ts -------------------------------------------------------------------------------- /types/shared/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/types/shared/index.ts -------------------------------------------------------------------------------- /types/web-site-builder/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/types/web-site-builder/actions/index.ts -------------------------------------------------------------------------------- /types/web-site-builder/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devdeck101/authjs-prisma-template/HEAD/types/web-site-builder/index.ts --------------------------------------------------------------------------------