import React from 'react'; import { PieChart, Pie, Cell, ResponsiveContainer, Tooltip } from 'recharts'; import { Card, CardContent, CardHeader, CardTitle } from '../ui/card'; import { Apple } from 'lucide-react'; const data = [ { name: 'Expired', value: 30 }, { name: 'Preparation', value: 45 }, { name: 'Packaging', value: 25 }, ]; const COLORS = ['#ef4444', '#f97316', '#eab308']; export function FoodWasteChart() { return (
Food Waste
Reduction metrics and analysis
{data.map((entry, index) => ( ))}
Expired
Prep
Pack
); }