- Fork elmeg-demo codebase for multi-band support - Add data importer infrastructure with base class - Create band-specific importers: - phish.py: Phish.net API v5 - grateful_dead.py: Grateful Stats API - setlistfm.py: Dead & Company, Billy Strings (Setlist.fm) - Add spec-kit configuration for Gemini - Update README with supported bands and architecture
22 lines
497 B
TypeScript
22 lines
497 B
TypeScript
import { MetadataRoute } from 'next'
|
|
|
|
export default function sitemap(): MetadataRoute.Sitemap {
|
|
const baseUrl = 'https://elmeg.xyz'
|
|
|
|
const routes = [
|
|
'',
|
|
'/shows',
|
|
'/songs',
|
|
'/venues',
|
|
'/videos',
|
|
'/stats',
|
|
'/shows/upcoming',
|
|
].map((route) => ({
|
|
url: `${baseUrl}${route}`,
|
|
lastModified: new Date(),
|
|
changeFrequency: 'daily' as const,
|
|
priority: route === '' ? 1 : 0.8,
|
|
}))
|
|
|
|
return routes
|
|
}
|