"use client"; import { TypographyH1 } from "./h1"; import { TypographyH2 } from "./h2"; export default function UserShowcase({ display_name, spookify, images, }: { display_name?: string; spookify: boolean; images?: { url: string }[]; }) { const imageSource = images && images[0]; return (