feat: add single tool pages, wiring with toolcard

This commit is contained in:
2026-08-28 08:05:20 +05:00
parent f4216e6868
commit f990ad6767
7 changed files with 373 additions and 12 deletions
@@ -0,0 +1,11 @@
import { TOOLS } from "$lib/registry";
export const prerender = true;
export function entries() {
return TOOLS.map((tool) => ({ id: tool.id }));
}
export function load({ params }: { params: { id: string } }) {
return { id: params.id };
}