import { AIPromptPanel } from '@repo/view-builder/ai/AIPromptPanel';
const promptTemplates = [
{
name: 'Contact Form',
prompt: 'Create a contact form with name, email, subject, and message fields. Add appropriate validation for each field.'
},
{
name: 'Product Table',
prompt: 'Build a table for managing products with columns for ID, name, category, price, and inventory. Include sorting and filtering options.'
},
{
name: 'User Profile',
prompt: 'Generate a detail view for user profiles with sections for personal information, contact details, and account settings.'
}
];
function TemplatedAIPanel() {
return <AIPromptPanel promptTemplates={promptTemplates} />;
}