'use client' export function EmailReportMockup() { return (
{/* Pulse logo header */}
Pulse
{/* Report content */}

ciphera.net

Daily summary report · 19 Mar 2026

Traffic down 6% compared to yesterday

{/* Stats grid */}
{[ { label: 'PAGEVIEWS', value: '323', change: '2%', down: true }, { label: 'VISITORS', value: '207', change: '6%', down: true }, { label: 'BOUNCE', value: '97%', change: '0%', down: false }, { label: 'DURATION', value: '3m 18s', change: '7%', down: false }, ].map((stat) => (

{stat.label}

{stat.value}

{stat.down ? '\u25BC' : '\u25B2'} {stat.change}

))}
{/* Divider */}
{/* Top Pages */}

Top Pages

Page Views
{[ { page: '/', views: 100 }, { page: '/products/drop', views: 96 }, { page: '/pricing', views: 42 }, ].map((row) => (
{row.views}
{row.page}
))}
{/* Schedule indicator */}
Delivered every day at 09:00
Sent
) }