'use client' import { useState } from 'react' import { MainLayout } from '@/components/layout/MainLayout' import { Button } from '@/components/shared/Button' import Image from 'next/image' import { Calendar, Check } from 'lucide-react' const features = [ 'Interactive product walkthrough', 'Live data visualization demo', 'Custom dashboard creation', 'AI-powered insights preview', 'Team collaboration features', ] export default function DemoPage() { const [formData, setFormData] = useState({ name: '', email: '', company: '', teamSize: '', message: '', }) const handleSubmit = (e: React.FormEvent) => { e.preventDefault() // Handle form submission console.log('Form submitted:', formData) } return (
{/* Left side - Demo preview */}

Experience IndexAI in Action

See how our AI-powered analytics platform can transform your data into actionable insights.

{/* Feature list */}

What you'll see in the demo

    {features.map((feature) => (
  • {feature}
  • ))}
{/* Demo preview */}
Product demo preview
{/* Right side - Request form */}

Schedule a Demo

Fill out the form below and our team will get in touch to schedule a personalized demo.

setFormData({ ...formData, name: e.target.value }) } className="mt-1 block w-full rounded-md border px-3 py-2" required />
setFormData({ ...formData, email: e.target.value }) } className="mt-1 block w-full rounded-md border px-3 py-2" required />
setFormData({ ...formData, company: e.target.value }) } className="mt-1 block w-full rounded-md border px-3 py-2" required />