basic homescreen

This commit is contained in:
Kyle Corbitt
2023-06-26 22:13:35 -07:00
parent 10c7b3fa2e
commit 844e133745
2 changed files with 14 additions and 1 deletions

View File

@@ -13,7 +13,8 @@ declare module "nextjs-routes" {
export type Route =
| DynamicRoute<"/api/auth/[...nextauth]", { "nextauth": string[] }>
| DynamicRoute<"/api/trpc/[trpc]", { "trpc": string }>
| DynamicRoute<"/experiments/[id]", { "id": string }>;
| DynamicRoute<"/experiments/[id]", { "id": string }>
| StaticRoute<"/">;
interface StaticRoute<Pathname> {
pathname: Pathname;