feat: tRPC API route, client and login page with auth

This commit is contained in:
2026-02-12 15:25:43 -06:00
parent d88baefdf9
commit 32314228c4
4 changed files with 124 additions and 1 deletions

4
src/lib/trpc-client.ts Normal file
View File

@@ -0,0 +1,4 @@
import { createTRPCReact } from '@trpc/react-query'
import type { AppRouter } from '@/server/trpc/routers'
export const trpc = createTRPCReact<AppRouter>()