"use client"; import Link from "next/link"; import { getTopicConfig } from "../config"; type TopicFooterProps = { topicId: string; }; export function TopicFooter({ topicId }: TopicFooterProps) { const config = getTopicConfig(topicId); return ( ); }