"use client"; import ReactMarkdown from "react-markdown"; import remarkBreaks from "remark-breaks"; import { isDev } from "~/utils/isDev"; type Props = { content: string; }; export default function Footer({ content }: Props) { return ( ); }