2025-06-28 00:38:09 +02:00
|
|
|
import type { Script } from "@/lib/types";
|
|
|
|
|
|
|
|
|
|
import TextCopyBlock from "@/components/text-copy-block";
|
2024-11-04 23:55:08 +01:00
|
|
|
|
|
|
|
|
export default function Description({ item }: { item: Script }) {
|
|
|
|
|
return (
|
|
|
|
|
<div className="p-2">
|
|
|
|
|
<h2 className="mb-2 max-w-prose text-lg font-semibold">Description</h2>
|
|
|
|
|
<p className="text-sm text-muted-foreground">
|
|
|
|
|
{TextCopyBlock(item.description)}
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|