├── .env.example ├── .gitignore ├── README.md ├── app ├── (auth) │ ├── forget-password │ │ └── page.tsx │ ├── login │ │ └── page.tsx │ ├── reset-password │ │ └── page.tsx │ └── signup │ │ └── page.jsx ├── (dashboard) │ ├── dashboard │ │ ├── account │ │ │ └── page.tsx │ │ ├── page.tsx │ │ └── setting │ │ │ ├── billing │ │ │ └── page.tsx │ │ │ ├── page.tsx │ │ │ ├── preference │ │ │ └── page.tsx │ │ │ ├── profile │ │ │ └── page.tsx │ │ │ └── security │ │ │ └── page.tsx │ ├── data.json │ └── layout.tsx ├── _components │ └── hero.tsx ├── api │ ├── auth │ │ └── [...all] │ │ │ └── route.ts │ └── route.ts ├── favicon.ico ├── globals.css ├── layout.tsx └── page.tsx ├── components.json ├── components ├── app-sidebar.tsx ├── auth │ ├── forget-password.tsx │ ├── login-form.tsx │ ├── logout-button-icon.tsx │ ├── logout-button.tsx │ ├── reset-password.tsx │ └── signup-form.tsx ├── chart-area-interactive.tsx ├── dashboard │ ├── billing-section.tsx │ ├── preference-section.tsx │ ├── profile-section.tsx │ └── security-section.tsx ├── data-table.tsx ├── mode-toggle.tsx ├── nav-documents.tsx ├── nav-main.tsx ├── nav-secondary.tsx ├── nav-user.tsx ├── section-cards.tsx ├── site-header.tsx ├── theme-provider.tsx └── ui │ ├── accordion.tsx │ ├── alert-dialog.tsx │ ├── alert.tsx │ ├── aspect-ratio.tsx │ ├── avatar.tsx │ ├── badge.tsx │ ├── breadcrumb.tsx │ ├── button.tsx │ ├── calendar.tsx │ ├── card.tsx │ ├── carousel.tsx │ ├── chart.tsx │ ├── checkbox.tsx │ ├── collapsible.tsx │ ├── command.tsx │ ├── context-menu.tsx │ ├── dialog.tsx │ ├── drawer.tsx │ ├── dropdown-menu.tsx │ ├── form.tsx │ ├── hover-card.tsx │ ├── input-otp.tsx │ ├── input.tsx │ ├── label.tsx │ ├── menubar.tsx │ ├── navigation-menu.tsx │ ├── pagination.tsx │ ├── password-input.tsx │ ├── popover.tsx │ ├── progress.tsx │ ├── radio-group.tsx │ ├── resizable.tsx │ ├── scroll-area.tsx │ ├── select.tsx │ ├── separator.tsx │ ├── sheet.tsx │ ├── sidebar.tsx │ ├── skeleton.tsx │ ├── slider.tsx │ ├── sonner.tsx │ ├── switch.tsx │ ├── table.tsx │ ├── tabs.tsx │ ├── textarea.tsx │ ├── toggle-group.tsx │ ├── toggle.tsx │ └── tooltip.tsx ├── hooks └── use-mobile.ts ├── lib ├── auth-client.ts ├── auth.ts ├── prisma.ts ├── social.ts ├── utils.ts └── validation.ts ├── middleware.ts ├── next.config.ts ├── package.json ├── pnpm-lock.yaml ├── postcss.config.mjs ├── prisma └── schema.prisma ├── public ├── file.svg ├── globe.svg ├── next.svg ├── vercel.svg └── window.svg └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/README.md -------------------------------------------------------------------------------- /app/(auth)/forget-password/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/app/(auth)/forget-password/page.tsx -------------------------------------------------------------------------------- /app/(auth)/login/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/app/(auth)/login/page.tsx -------------------------------------------------------------------------------- /app/(auth)/reset-password/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/app/(auth)/reset-password/page.tsx -------------------------------------------------------------------------------- /app/(auth)/signup/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/app/(auth)/signup/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/dashboard/account/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/app/(dashboard)/dashboard/account/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/app/(dashboard)/dashboard/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/dashboard/setting/billing/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/app/(dashboard)/dashboard/setting/billing/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/dashboard/setting/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/app/(dashboard)/dashboard/setting/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/dashboard/setting/preference/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/app/(dashboard)/dashboard/setting/preference/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/dashboard/setting/profile/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/app/(dashboard)/dashboard/setting/profile/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/dashboard/setting/security/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/app/(dashboard)/dashboard/setting/security/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/app/(dashboard)/data.json -------------------------------------------------------------------------------- /app/(dashboard)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/app/(dashboard)/layout.tsx -------------------------------------------------------------------------------- /app/_components/hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/app/_components/hero.tsx -------------------------------------------------------------------------------- /app/api/auth/[...all]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/app/api/auth/[...all]/route.ts -------------------------------------------------------------------------------- /app/api/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/app/api/route.ts -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/app/page.tsx -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components.json -------------------------------------------------------------------------------- /components/app-sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/app-sidebar.tsx -------------------------------------------------------------------------------- /components/auth/forget-password.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/auth/forget-password.tsx -------------------------------------------------------------------------------- /components/auth/login-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/auth/login-form.tsx -------------------------------------------------------------------------------- /components/auth/logout-button-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/auth/logout-button-icon.tsx -------------------------------------------------------------------------------- /components/auth/logout-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/auth/logout-button.tsx -------------------------------------------------------------------------------- /components/auth/reset-password.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/auth/reset-password.tsx -------------------------------------------------------------------------------- /components/auth/signup-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/auth/signup-form.tsx -------------------------------------------------------------------------------- /components/chart-area-interactive.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/chart-area-interactive.tsx -------------------------------------------------------------------------------- /components/dashboard/billing-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/dashboard/billing-section.tsx -------------------------------------------------------------------------------- /components/dashboard/preference-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/dashboard/preference-section.tsx -------------------------------------------------------------------------------- /components/dashboard/profile-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/dashboard/profile-section.tsx -------------------------------------------------------------------------------- /components/dashboard/security-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/dashboard/security-section.tsx -------------------------------------------------------------------------------- /components/data-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/data-table.tsx -------------------------------------------------------------------------------- /components/mode-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/mode-toggle.tsx -------------------------------------------------------------------------------- /components/nav-documents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/nav-documents.tsx -------------------------------------------------------------------------------- /components/nav-main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/nav-main.tsx -------------------------------------------------------------------------------- /components/nav-secondary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/nav-secondary.tsx -------------------------------------------------------------------------------- /components/nav-user.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/nav-user.tsx -------------------------------------------------------------------------------- /components/section-cards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/section-cards.tsx -------------------------------------------------------------------------------- /components/site-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/site-header.tsx -------------------------------------------------------------------------------- /components/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/theme-provider.tsx -------------------------------------------------------------------------------- /components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/ui/accordion.tsx -------------------------------------------------------------------------------- /components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/ui/alert.tsx -------------------------------------------------------------------------------- /components/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/ui/avatar.tsx -------------------------------------------------------------------------------- /components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/ui/badge.tsx -------------------------------------------------------------------------------- /components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/ui/calendar.tsx -------------------------------------------------------------------------------- /components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/ui/card.tsx -------------------------------------------------------------------------------- /components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/ui/carousel.tsx -------------------------------------------------------------------------------- /components/ui/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/ui/chart.tsx -------------------------------------------------------------------------------- /components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/ui/command.tsx -------------------------------------------------------------------------------- /components/ui/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/ui/context-menu.tsx -------------------------------------------------------------------------------- /components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/ui/dialog.tsx -------------------------------------------------------------------------------- /components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/ui/drawer.tsx -------------------------------------------------------------------------------- /components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/ui/form.tsx -------------------------------------------------------------------------------- /components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /components/ui/input-otp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/ui/input-otp.tsx -------------------------------------------------------------------------------- /components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/ui/input.tsx -------------------------------------------------------------------------------- /components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/ui/label.tsx -------------------------------------------------------------------------------- /components/ui/menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/ui/menubar.tsx -------------------------------------------------------------------------------- /components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /components/ui/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/ui/pagination.tsx -------------------------------------------------------------------------------- /components/ui/password-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/ui/password-input.tsx -------------------------------------------------------------------------------- /components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/ui/popover.tsx -------------------------------------------------------------------------------- /components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/ui/progress.tsx -------------------------------------------------------------------------------- /components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /components/ui/resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/ui/resizable.tsx -------------------------------------------------------------------------------- /components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/ui/select.tsx -------------------------------------------------------------------------------- /components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/ui/separator.tsx -------------------------------------------------------------------------------- /components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/ui/sheet.tsx -------------------------------------------------------------------------------- /components/ui/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/ui/sidebar.tsx -------------------------------------------------------------------------------- /components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/ui/slider.tsx -------------------------------------------------------------------------------- /components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/ui/sonner.tsx -------------------------------------------------------------------------------- /components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/ui/switch.tsx -------------------------------------------------------------------------------- /components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/ui/table.tsx -------------------------------------------------------------------------------- /components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/ui/tabs.tsx -------------------------------------------------------------------------------- /components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/ui/textarea.tsx -------------------------------------------------------------------------------- /components/ui/toggle-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/ui/toggle-group.tsx -------------------------------------------------------------------------------- /components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/ui/toggle.tsx -------------------------------------------------------------------------------- /components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /hooks/use-mobile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/hooks/use-mobile.ts -------------------------------------------------------------------------------- /lib/auth-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/lib/auth-client.ts -------------------------------------------------------------------------------- /lib/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/lib/auth.ts -------------------------------------------------------------------------------- /lib/prisma.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/lib/prisma.ts -------------------------------------------------------------------------------- /lib/social.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/lib/social.ts -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /lib/validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/lib/validation.ts -------------------------------------------------------------------------------- /middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/middleware.ts -------------------------------------------------------------------------------- /next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/next.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /public/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/public/file.svg -------------------------------------------------------------------------------- /public/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/public/globe.svg -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/public/window.svg -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kinfe123/better-auth-nextjs/HEAD/tsconfig.json --------------------------------------------------------------------------------