import Image from "next/image"; import Link from "next/link"; import { RiArrowRightLine } from "react-icons/ri"; import { Card, CardContent, CardDescription, CardHeader, CardTitle, } from "@/components/ui/card"; type CreatorCardProps = { displayName: string; about: string; picture: string; banner: string; }; export default function CreatorCard({ banner, displayName, picture, about, }: CreatorCardProps) { const recentEvents = [ { id: "test", title: "How to start building a following on nostr.", summary: "Starting on a new protocol could be intinidating, But there is no reason to fret. I've got it all under control.", }, { id: "asg", title: "Jumping through relays", summary: "Getting used to different relays and how to find them", }, { id: "ant", title: "Nostrasia is coming", summary: "Time to start preping for Nostraisa.", }, ]; return ( background
{displayName} {about} user Recent work:
    {recentEvents.map((item) => (
  • {item.title}

    {item.summary}

  • ))}
); }