"use client"; import ReactMarkdown from "react-markdown"; type Props = { content: string; }; export default function Footer({ content }: Props) { return ( ); }