"use client"; import Container from "./components/Container"; import { CardTitle, CardDescription } from "@/components/ui/card"; import { getTagValues, getTagsValues } from "@/lib/nostr/utils"; import { type Event } from "nostr-tools"; import { removeDuplicates } from "@/lib/utils"; export default function Kind30023({ content, tags }: Event) { const title = getTagValues("title", tags); const summary = getTagValues("summary", tags); const contentTags = removeDuplicates(getTagsValues("t", tags)); return ( {title} {summary ?? content} ); }