🗾
Events in Tokyo
Page 5 of 5 • 6 events per page
Route: /events/tokyo/5
5
Current Page
6
Events Shown
30
Total Events
JST
Timezone
Workshop
#25
Business Workshop 25
4/16/2026 at 2:00 AM
Tokyo Convention Center Hall B
228 attending
$30 Meetup
#26
Health Meetup 26
4/17/2026 at 3:00 PM
Tokyo Convention Center Hall C
134 attending
$111 Seminar
#27
Education Seminar 27
4/18/2026 at 4:00 AM
Tokyo Convention Center Hall D
64 attending
Free Concert
#28
Tech Concert 28
4/19/2026 at 5:00 PM
Tokyo Convention Center Hall E
64 attending
$91 Festival
#29
Art Festival 29
4/20/2026 at 6:00 AM
Tokyo Convention Center Hall F
128 attending
$66 Conference
#30
Music Conference 30
4/21/2026 at 7:00 PM
Tokyo Convention Center Hall A
204 attending
Free Pagination Route Details
File path:
/pages/events/[city]/[page].astro
Static paths:
Pre-generated for 5 cities × 5 pages = 25 routes
Current params:
city="tokyo", page="5"
Pagination Implementation
---
export function getStaticPaths() {
const cities = ['san-francisco', 'new-york', 'london'];
const maxPages = 5;
return cities.flatMap(city =>
Array.from({ length: maxPages }, (_, i) => ({
params: {
city: city,
page: (i + 1).toString()
}
}))
);
}
const { city, page } = Astro.params;
const currentPage = parseInt(page || '1');
const events = getEventsForPage(city, currentPage);
---
<h1>Events in {city} - Page {currentPage}</h1>