"use client"; export default function InsightsPage() { const items = [ { icon: "📊", title: "Usage analytics", desc: "Page views, active users, retention curves, and funnel analysis." }, { icon: "⚡", title: "Performance", desc: "Load times, error rates, and infrastructure health at a glance." }, { icon: "💰", title: "Revenue", desc: "MRR, churn, LTV, and subscription metrics wired from your billing provider." }, { icon: "🔔", title: "Alerts", desc: "Get notified when key metrics drop or anomalies are detected." }, ]; return (

Insights

Analytics, performance, and revenue — available once your product is deployed.

{items.map((item, i) => (
{item.icon}
{item.title}
{item.desc}
Soon
))}
); }