diff options
| author | yyamashita <yyamashita@mosquit.one> | 2026-05-07 10:26:10 +0900 |
|---|---|---|
| committer | yyamashita <yyamashita@mosquit.one> | 2026-05-07 10:26:10 +0900 |
| commit | bffc2c74408ff7163cea0c0392dfc4b15c620a5f (patch) | |
| tree | 4dd01e086ae2cb577d1d5f03b0a1fff4bb61d70a /app/routes/events._index.tsx | |
| parent | 8aa1986661199e919df354dc0a5a2819155f023a (diff) | |
Add date-based event view grouped by venue
New route /events/by-date shows events for a single day (default today)
with prev/next day navigation and a date picker, grouped by livehouse.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'app/routes/events._index.tsx')
| -rw-r--r-- | app/routes/events._index.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/routes/events._index.tsx b/app/routes/events._index.tsx index 174c81e..7e6ca5d 100644 --- a/app/routes/events._index.tsx +++ b/app/routes/events._index.tsx @@ -53,6 +53,7 @@ export default function EventsIndex() { </Link> <nav className="flex gap-6 text-sm text-gray-400"> <Link to="/events" className="hover:text-white transition-colors">イベント</Link> + <Link to="/events/by-date" className="hover:text-white transition-colors">日付別</Link> <Link to="/venues" className="hover:text-white transition-colors">会場一覧</Link> </nav> </header> |
