-
AI Prativa – Adding Use Cases To A Category
Adding Use Case To A Category import { Category } from '@/types'; export const categories: Category[] = [ // … other categories … { id: '9', name: 'Agriculture', slug: 'agriculture', description: 'AI for crop monitoring, yield prediction, and smart farming', icon: '🌾', color: '#84cc16', useCases: [ { id: 'ag-1', name: 'Smart Farming Assistant', slug: 'smart-farming-assistant', // ← Add slug description: 'AI-powered chatbot that helps farmers with crop advice, season information, and farming techniques using voice and text interactions', codeLink: 'https://github.com/yourusername/smart-farming-assistant', }, { id: 'ag-2', name: 'Crop Yield Prediction', slug: 'crop-yield-prediction', description: 'Predict crop yields based on weather patterns, soil conditions,
