import React from 'react';
import { FolderTree, MessageSquare, Code } from 'lucide-react';
interface PopularChatTopicsProps {
append: (text: string) => void;
}
interface ChatTopic {
id: string;
icon: React.ReactNode;
description: string;
prompt: string;
}
const POPULAR_TOPICS: ChatTopic[] = [
{
id: 'organize-photos',
icon: ,
description:
'Develop a tamagotchi game that lives on my computer and follows a pixelated styling',
prompt: 'Develop a tamagotchi game that lives on my computer and follows a pixelated styling',
},
];
export default function PopularChatTopics({ append }: PopularChatTopicsProps) {
const handleTopicClick = (prompt: string) => {
append(prompt);
};
return (
{topic.description}