import Container from "./components/Container"; import { CardTitle, CardDescription } from "@/components/ui/card"; import { type Event } from "nostr-tools"; import { RenderText } from "../TextRendering"; import { getTagsValues } from "@/lib/nostr/utils"; import LinkCard from "@/components/LinkCard"; export default function Kind1({ content, tags }: Event) { const r = getTagsValues("r", tags); return ( {!!r.length && (
{r.map((url) => ( ))}
)}
); }