import { Card, CardContent } from "@/components/ui/card" import Link from "next/link" import { Calendar } from "lucide-react" const years = Array.from({ length: 2025 - 2014 + 1 }, (_, i) => 2025 - i) export default function ArchivePage() { return (

Archive

Browse shows by year.

{years.map((year) => (
{year}
Browse Shows
))}
) }