"use client"; import { CopyableBlock } from "@/components/copyable"; import { SidebarItem } from "./SidebarItem"; import type { Prompt } from "@/lib/content"; interface PromptsSectionProps { prompts: Prompt[]; } export function PromptsSection({ prompts }: PromptsSectionProps) { return (

Prompts Used

{prompts.map((prompt) => ( ))}
); }