🗾
Events in Tokyo
Page 1 of 5 • 6 events per page
Route: /events/tokyo/1
1
Current Page
6
Events Shown
30
Total Events
JST
Timezone
Workshop
#1
Art Workshop 1
2/4/2026 at 2:00 AM
Tokyo Convention Center Hall B
213 attending
$104 Meetup
#2
Music Meetup 2
2/5/2026 at 3:00 PM
Tokyo Convention Center Hall C
134 attending
$73 Seminar
#3
Food Seminar 3
2/6/2026 at 4:00 AM
Tokyo Convention Center Hall D
114 attending
Free Concert
#4
Business Concert 4
2/7/2026 at 5:00 PM
Tokyo Convention Center Hall E
86 attending
$46 Festival
#5
Health Festival 5
2/8/2026 at 6:00 AM
Tokyo Convention Center Hall F
203 attending
$117 Conference
#6
Education Conference 6
2/9/2026 at 7:00 PM
Tokyo Convention Center Hall A
114 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="1"
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>