From b9e06d9a139e6d9a6d509f500beee97d0d071602 Mon Sep 17 00:00:00 2001 From: yyamashita Date: Sat, 15 Aug 2026 20:12:25 +0900 Subject: Add site-wide search for bands and artists Adds a nav search box and /search route backed by a LIKE-based searchAll() query over band name/area/description and artist name. --- app/routes.ts | 1 + 1 file changed, 1 insertion(+) (limited to 'app/routes.ts') diff --git a/app/routes.ts b/app/routes.ts index 6125a73..5660edb 100644 --- a/app/routes.ts +++ b/app/routes.ts @@ -2,6 +2,7 @@ import { type RouteConfig, index, route } from "@react-router/dev/routes"; export default [ index("routes/home.tsx"), + route("/search", "routes/search.tsx"), route("/api/bands", "routes/api-bands.tsx"), route("/api/artists", "routes/api-artists.tsx"), route("/api/export", "routes/api-export.tsx"), -- cgit v1.2.3