fediversion/frontend/app/bands/page.tsx
fullsizemalt e68486ddd2
Some checks failed
Deploy Fediversion / deploy (push) Failing after 1s
fix(nav): add /bands discovery page, fix Browse links to unified routes
2025-12-29 22:03:40 -08:00

21 lines
671 B
TypeScript

import { Metadata } from "next"
import { BandsGrid } from "@/components/bands/bands-grid"
export const metadata: Metadata = {
title: "Bands | Fediversion",
description: "Browse all bands in the Fediversion archive"
}
export default function BandsPage() {
return (
<div className="container max-w-6xl py-8 space-y-8">
<div>
<h1 className="text-3xl font-bold tracking-tight">Bands</h1>
<p className="text-muted-foreground">
Select a band to explore their archive of shows, songs, and performances.
</p>
</div>
<BandsGrid />
</div>
)
}