"use client"; import Link from "next/link"; import { Tags } from "lucide-react"; import { FollowButton } from "@/components/shared/FollowButton"; import { TOPICS } from "@/lib/topics"; export default function TopicsPage() { return (

Topics

Follow topics to see related bills in your feed

{TOPICS.map(({ tag, label, desc }) => (
{label}

{desc}

))}
); }