"use client"; import Image from "next/image"; import Link from "next/link"; import { RiMoreFill } from "react-icons/ri"; import { HiOutlineLightningBolt } from "react-icons/hi"; import { HiOutlineHandThumbUp, HiOutlineChatBubbleLeftEllipsis, HiOutlineEllipsisHorizontal, } from "react-icons/hi2"; import { Card, CardContent, CardDescription, CardHeader, CardTitle, } from "@/components/ui/card"; import { Avatar, AvatarImage, AvatarFallback } from "@radix-ui/react-avatar"; import { formatDate } from "@/lib/utils/dates"; import { Button } from "../ui/button"; type CreatorCardProps = { displayName: string; about: string; picture: string; banner: string; }; export default function LongFormContentCard() { return (
SC Derek Seivers
{formatDate(new Date("10-5-23"), "MMM Do")}
The start of the Nostr revolution This is the summary of this artilce. Let's hope that it is a good article and that it will end up being worth reading. I don't want to waste my time on some random other stuff.
); }