2023-10-14 18:57:37 -04:00
|
|
|
import Container from "./components/Container";
|
|
|
|
import { CardTitle, CardDescription } from "@/components/ui/card";
|
|
|
|
import { type Event } from "nostr-tools";
|
|
|
|
|
2023-10-15 11:44:15 -04:00
|
|
|
export default function KindDefault({ pubkey }: Event) {
|
2023-10-14 18:57:37 -04:00
|
|
|
return (
|
2023-10-15 11:44:15 -04:00
|
|
|
<Container pubkey={pubkey}>
|
2023-10-14 18:57:37 -04:00
|
|
|
<CardTitle className="mb-1.5 line-clamp-2 text-lg font-semibold">
|
|
|
|
The start of the Nostr revolution
|
|
|
|
</CardTitle>
|
|
|
|
<CardDescription className="line-clamp-4 text-sm">
|
|
|
|
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.
|
|
|
|
</CardDescription>
|
|
|
|
</Container>
|
|
|
|
);
|
|
|
|
}
|