'use client'; import React, { useState } from 'react'; import { BarChart3, Bell, TrendingUp, PieChart, FileSpreadsheet, Calendar, Download, Target, CheckCircle2, Clock, LineChart, Activity, Layers } from 'lucide-react'; export default function ReportingPage() { const [email, setEmail] = useState(''); const [submitted, setSubmitted] = useState(false); const handleSubmit = (e: React.FormEvent) => { e.preventDefault(); if (email) { setSubmitted(true); setEmail(''); } }; const upcomingFeatures = [ { icon: LineChart, title: 'Pipeline Analytics', description: 'Track deal flow, conversion rates, and revenue forecasts across your pipeline' }, { icon: Activity, title: 'Outreach Performance', description: 'Measure email open rates, response rates, and engagement over time' }, { icon: PieChart, title: 'Deal Breakdown', description: 'Visualize your portfolio by property type, stage, market, and more' }, { icon: Target, title: 'Goal Tracking', description: 'Set targets and track progress with customizable KPI dashboards' }, { icon: Calendar, title: 'Time-Based Reports', description: 'Compare performance weekly, monthly, quarterly, or custom date ranges' }, { icon: Download, title: 'Export & Share', description: 'Export to PDF, Excel, or CSV. Schedule automated report delivery' }, ]; return (
{/* Hero Section */}
{/* Animated Icon Stack */}
{/* Badge */}
Coming Q2 2026

Analytics & Reporting

Turn your CRE data into actionable insights. Get beautiful dashboards, custom reports, and the metrics you need to grow your business.

Track pipeline health, measure outreach effectiveness, and identify opportunities with powerful analytics built specifically for commercial real estate.

{/* Email Signup */} {!submitted ? (
setEmail(e.target.value)} className="flex-1 px-4 py-3 rounded-xl border border-border bg-background text-foreground placeholder:text-muted-foreground focus:outline-none focus:ring-2 focus:ring-primary/50" required />
) : (
You're on the list! We'll notify you when it's ready.
)}

Be first to access reporting when it launches. No spam, just updates.

{/* Features Preview */}

What's Coming

{upcomingFeatures.map((feature, index) => (

{feature.title}

{feature.description}

))}
{/* Dashboard Preview (Disabled/Grayed) */}
Dashboard Preview Coming Soon
{/* Stats Row */}
{['Total Deals', 'Pipeline Value', 'Conversion Rate', 'Avg. Deal Size'].map((label, i) => (
))}
{/* Charts Row */}
{/* Line Chart Placeholder */}
{[40, 65, 45, 80, 55, 90, 70, 85, 60, 95, 75, 88].map((h, i) => (
))}
{/* Pie Chart Placeholder */}
{/* Report Types */}

Available Report Types

{[ 'Pipeline Summary', 'Outreach Activity', 'Deal Velocity', 'Win/Loss Analysis', 'Market Breakdown', 'Team Performance', ].map((report, index) => (
{report}
))}
); }