Leveret: Precision Tools for Trail Runners
A running app for serious outdoor athletes. High-fidelity topography meets training science.
I'm building everything: product vision, design, front-end, back-end, infrastructure.
“Leveret treats trail running like the technical discipline it is — not a road run with hills.”leveret.run

import { createTRPCClient, httpBatchLink } from '@trpc/client';
import type { AppRouter } from '@/server/trpc/routers';
import superjson from 'superjson';
export const trpc = createTRPCClient<AppRouter>({
links: [
httpBatchLink({
url: '/api/trpc',
transformer: superjson,
}),
],
});
// Usage in components
const workouts = await trpc.workouts.getAll.query();
const route = await trpc.routes.getById.query({ id });{
"dependencies": {
"next": "^16.0.10",
"react": "^19.2.3",
"@trpc/client": "^11.7.2",
"@trpc/react-query": "^11.7.2",
"@trpc/server": "^11.7.2",
"@tanstack/react-query": "^5.90.12",
"drizzle-orm": "^0.45.1",
"@neondatabase/serverless": "^1.0.2",
"next-auth": "5.0.0-beta.30",
"@maptiler/sdk": "^3.9.0",
"zod": "^4.1.13"
}
}








