import React from 'react'; import { BarChart, Bar, XAxis, YAxis, CartesianGrid, Tooltip, ResponsiveContainer, LineChart, Line } from 'recharts'; import { Mail, MousePointer, Users, Activity, Plus } from 'lucide-react'; import { motion } from 'framer-motion'; const data = [ { name: 'Mon', emails: 400, replies: 240 }, { name: 'Tue', emails: 300, replies: 139 }, { name: 'Wed', emails: 200, replies: 980 }, { name: 'Thu', emails: 278, replies: 390 }, { name: 'Fri', emails: 189, replies: 480 }, { name: 'Sat', emails: 239, replies: 380 }, { name: 'Sun', emails: 349, replies: 430 }, ]; const StatCard = ({ title, value, change, icon: Icon, color }) => (
{change}

{value}

{title}

); const DashboardView = ({ setView }) => { return (
{/* Hero Section */}

Automate your Outreach

HunterAI creates hyper-personalized emails using your resume and target company data to 10x your response rate.

{/* Stats Grid */}
{/* Analytics Chart */}

Campaign Performance

Recent Activity

{[1, 2, 3, 4].map((_, i) => (

Campaign "Frontend Roles" sent

2 hours ago

))}
); }; export default DashboardView;