Initial commit: Projektstruktur mit Next.js, Prisma, tRPC, shadcn/ui, Landingpage und Registrierung

This commit is contained in:
Philip
2025-04-07 21:31:50 +02:00
parent 973438fcd3
commit 249f3b6578
29 changed files with 2270 additions and 141 deletions

12
src/server/api/root.ts Normal file
View File

@@ -0,0 +1,12 @@
import { router } from "@/server/trpc"
import { childRouter } from "./routers/child"
export const appRouter = router({
child: childRouter,
})
// Export type helper
export type AppRouter = typeof appRouter
// Export router instance
export default appRouter