import { cn } from "@/utils/cn"; import { Patrick_Hand } from "next/font/google"; import Image, { type StaticImageData } from "next/image"; import { HiChevronRight } from "react-icons/hi"; const handwritten = Patrick_Hand({ subsets: ["latin"], weight: "400" }); interface Props { username: string; bio?: React.ReactNode; avatar: string | StaticImageData; content: string | React.ReactNode; } export default function Comment({ username, bio, avatar, content }: Props) { return (
{`${username}'s

{username}

{bio}

„{content}“
); }