Pages: - /districts - list of all districts with cards - /districts/[slug] - district detail page - /soul, /greenfood, /energy-union - shortcut redirects UI Features: - District-specific colors and icons - Lead agent + core team display - District rooms list with Matrix status - District nodes list - Chat widget for lobby room - Stats (agents, rooms, nodes count)
7 lines
124 B
TypeScript
7 lines
124 B
TypeScript
import { redirect } from 'next/navigation'
|
|
|
|
export default function GreenfoodPage() {
|
|
redirect('/districts/greenfood')
|
|
}
|
|
|