├── .env.example ├── .eslintrc.json ├── .gitignore ├── .vscode └── settings.json ├── README.md ├── components.json ├── docker-compose.yml ├── next.config.mjs ├── package.json ├── postcss.config.mjs ├── prisma ├── migrations │ ├── 20240824201201_initial_migration │ │ └── migration.sql │ ├── 20240824201438_user_and_session │ │ └── migration.sql │ └── migration_lock.toml └── schema.prisma ├── public ├── grid.svg ├── next.svg ├── placeholder.svg └── vercel.svg ├── src ├── app │ ├── (auth) │ │ ├── layout.tsx │ │ ├── login │ │ │ ├── actions.ts │ │ │ ├── form.tsx │ │ │ ├── page.tsx │ │ │ └── schema.ts │ │ └── register │ │ │ ├── actions.ts │ │ │ ├── form.tsx │ │ │ ├── page.tsx │ │ │ └── schema.ts │ ├── (protected) │ │ ├── entries │ │ │ ├── actions.ts │ │ │ ├── columns.tsx │ │ │ ├── form.tsx │ │ │ ├── page.tsx │ │ │ └── schema.ts │ │ └── layout.tsx │ ├── api │ │ ├── entries │ │ │ └── route.ts │ │ ├── protected │ │ │ └── route.ts │ │ └── public │ │ │ └── route.ts │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ ├── page.tsx │ └── providers.tsx ├── components │ ├── auth │ │ └── logout │ │ │ ├── actions.ts │ │ │ └── button.tsx │ ├── dev │ │ └── tailwind-indicator.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 │ │ ├── data-table.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 │ │ ├── popover.tsx │ │ ├── progress.tsx │ │ ├── radio-group.tsx │ │ ├── resizable.tsx │ │ ├── scroll-area.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── sheet.tsx │ │ ├── skeleton.tsx │ │ ├── slider.tsx │ │ ├── sonner.tsx │ │ ├── switch.tsx │ │ ├── table.tsx │ │ ├── tabs.tsx │ │ ├── textarea.tsx │ │ ├── toast.tsx │ │ ├── toaster.tsx │ │ ├── toggle-group.tsx │ │ ├── toggle.tsx │ │ ├── tooltip.tsx │ │ └── use-toast.ts └── lib │ ├── api.ts │ ├── auth.ts │ ├── fetch.ts │ ├── memcache.ts │ ├── prisma.ts │ ├── rate-limit.ts │ ├── safe-action.ts │ └── utils.ts ├── tailwind.config.ts └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/README.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/components.json -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /prisma/migrations/20240824201201_initial_migration/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/prisma/migrations/20240824201201_initial_migration/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20240824201438_user_and_session/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/prisma/migrations/20240824201438_user_and_session/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/migration_lock.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/prisma/migrations/migration_lock.toml -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /public/grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/public/grid.svg -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/public/placeholder.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /src/app/(auth)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/app/(auth)/layout.tsx -------------------------------------------------------------------------------- /src/app/(auth)/login/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/app/(auth)/login/actions.ts -------------------------------------------------------------------------------- /src/app/(auth)/login/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/app/(auth)/login/form.tsx -------------------------------------------------------------------------------- /src/app/(auth)/login/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/app/(auth)/login/page.tsx -------------------------------------------------------------------------------- /src/app/(auth)/login/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/app/(auth)/login/schema.ts -------------------------------------------------------------------------------- /src/app/(auth)/register/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/app/(auth)/register/actions.ts -------------------------------------------------------------------------------- /src/app/(auth)/register/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/app/(auth)/register/form.tsx -------------------------------------------------------------------------------- /src/app/(auth)/register/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/app/(auth)/register/page.tsx -------------------------------------------------------------------------------- /src/app/(auth)/register/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/app/(auth)/register/schema.ts -------------------------------------------------------------------------------- /src/app/(protected)/entries/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/app/(protected)/entries/actions.ts -------------------------------------------------------------------------------- /src/app/(protected)/entries/columns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/app/(protected)/entries/columns.tsx -------------------------------------------------------------------------------- /src/app/(protected)/entries/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/app/(protected)/entries/form.tsx -------------------------------------------------------------------------------- /src/app/(protected)/entries/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/app/(protected)/entries/page.tsx -------------------------------------------------------------------------------- /src/app/(protected)/entries/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/app/(protected)/entries/schema.ts -------------------------------------------------------------------------------- /src/app/(protected)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/app/(protected)/layout.tsx -------------------------------------------------------------------------------- /src/app/api/entries/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/app/api/entries/route.ts -------------------------------------------------------------------------------- /src/app/api/protected/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/app/api/protected/route.ts -------------------------------------------------------------------------------- /src/app/api/public/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/app/api/public/route.ts -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/app/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/app/providers.tsx -------------------------------------------------------------------------------- /src/components/auth/logout/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/components/auth/logout/actions.ts -------------------------------------------------------------------------------- /src/components/auth/logout/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/components/auth/logout/button.tsx -------------------------------------------------------------------------------- /src/components/dev/tailwind-indicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/components/dev/tailwind-indicator.tsx -------------------------------------------------------------------------------- /src/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/components/ui/accordion.tsx -------------------------------------------------------------------------------- /src/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/components/ui/alert.tsx -------------------------------------------------------------------------------- /src/components/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/components/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /src/components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/components/ui/calendar.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/components/ui/carousel.tsx -------------------------------------------------------------------------------- /src/components/ui/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/components/ui/chart.tsx -------------------------------------------------------------------------------- /src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /src/components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /src/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/components/ui/command.tsx -------------------------------------------------------------------------------- /src/components/ui/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/components/ui/context-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/data-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/components/ui/data-table.tsx -------------------------------------------------------------------------------- /src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/components/ui/drawer.tsx -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/components/ui/form.tsx -------------------------------------------------------------------------------- /src/components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /src/components/ui/input-otp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/components/ui/input-otp.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/components/ui/menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/components/ui/menubar.tsx -------------------------------------------------------------------------------- /src/components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/components/ui/pagination.tsx -------------------------------------------------------------------------------- /src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /src/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/components/ui/progress.tsx -------------------------------------------------------------------------------- /src/components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /src/components/ui/resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/components/ui/resizable.tsx -------------------------------------------------------------------------------- /src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/components/ui/select.tsx -------------------------------------------------------------------------------- /src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /src/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/components/ui/slider.tsx -------------------------------------------------------------------------------- /src/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/components/ui/sonner.tsx -------------------------------------------------------------------------------- /src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/components/ui/table.tsx -------------------------------------------------------------------------------- /src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /src/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/components/ui/toast.tsx -------------------------------------------------------------------------------- /src/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/components/ui/toaster.tsx -------------------------------------------------------------------------------- /src/components/ui/toggle-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/components/ui/toggle-group.tsx -------------------------------------------------------------------------------- /src/components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/components/ui/toggle.tsx -------------------------------------------------------------------------------- /src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /src/components/ui/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/components/ui/use-toast.ts -------------------------------------------------------------------------------- /src/lib/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/lib/api.ts -------------------------------------------------------------------------------- /src/lib/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/lib/auth.ts -------------------------------------------------------------------------------- /src/lib/fetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/lib/fetch.ts -------------------------------------------------------------------------------- /src/lib/memcache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/lib/memcache.ts -------------------------------------------------------------------------------- /src/lib/prisma.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/lib/prisma.ts -------------------------------------------------------------------------------- /src/lib/rate-limit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/lib/rate-limit.ts -------------------------------------------------------------------------------- /src/lib/safe-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/lib/safe-action.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotyigit/boot-next/HEAD/tsconfig.json --------------------------------------------------------------------------------