import { Lightbulb } from 'lucide-react'; const examples = [ { text: "Add buy milk to my list", highlight: "Add buy milk to my list" }, { text: "Show me my tasks", highlight: "Show me my tasks" }, { text: "Mark task 1 as complete", highlight: "Mark task 1 as complete" }, { text: "Delete task 2", highlight: "Delete task 2" }, ]; export default function QuickExamples() { return (

Quick Examples

{examples.map((example, index) => (

"{example.highlight}"

))}
); }