import { Area, AreaChart, ResponsiveContainer, XAxis, YAxis } from 'recharts' const data = [ { name: 'Mon', clicks: Math.floor(Math.random() * 900) + 100, uniques: Math.floor(Math.random() * 700) + 80, }, { name: 'Tue', clicks: Math.floor(Math.random() * 900) + 100, uniques: Math.floor(Math.random() * 700) + 80, }, { name: 'Wed', clicks: Math.floor(Math.random() * 900) + 100, uniques: Math.floor(Math.random() * 700) + 80, }, { name: 'Thu', clicks: Math.floor(Math.random() * 900) + 100, uniques: Math.floor(Math.random() * 700) + 80, }, { name: 'Fri', clicks: Math.floor(Math.random() * 900) + 100, uniques: Math.floor(Math.random() * 700) + 80, }, { name: 'Sat', clicks: Math.floor(Math.random() * 900) + 100, uniques: Math.floor(Math.random() * 700) + 80, }, { name: 'Sun', clicks: Math.floor(Math.random() * 900) + 100, uniques: Math.floor(Math.random() * 700) + 80, }, ] export function AnalyticsChart() { return ( ) }