import React from 'react'; import { Newspaper, TrendingUp, Clock, AlertCircle, ChevronRight, Edit3, Trash2, } from 'lucide-react'; const DashboardMain = () => { return (
} /> } /> } /> } isAlert />

Artigos Recentes

Título Estado Autor Visualizações Ações

Performance de Conteúdo

O tráfego orgânico cresceu 15% nos últimos 7 dias.

); }; const StatCard = ({ label, value, trend, icon, isAlert = false, }: { label: string; value: string; trend: string; icon: React.ReactNode; isAlert?: boolean; }) => (
{icon}
{trend}

{label}

{value}

); const TableRow = ({ title, status, author, views, }: { title: string; status: string; author: string; views: string; }) => (

{title}

{status} {author} {views}
); const CategoryBar = ({ label, percentage, color, }: { label: string; percentage: number; color: string; }) => (
{label} {percentage}%
); export default DashboardMain;