"use client"; import { ArrowRight, BarChart3, Brain, Globe, MessageCircle, Shield, Sparkles, TrendingUp, Zap, } from "lucide-react"; import { useRouter } from "next/navigation"; import { useSession } from "next-auth/react"; import { useEffect, useState } from "react"; import { Badge } from "@/components/ui/badge"; import { Button } from "@/components/ui/button"; export default function LandingPage() { const { data: session, status } = useSession(); const router = useRouter(); const [isLoading, setIsLoading] = useState(false); useEffect(() => { if (session?.user) { router.push("/dashboard"); } }, [session, router]); const handleGetStarted = () => { setIsLoading(true); router.push("/login"); }; const handleRequestDemo = () => { // For now, redirect to contact - can be enhanced later window.open("mailto:demo@notso.ai?subject=LiveDash Demo Request", "_blank"); }; if (status === "loading") { return (
Loading...
); } return (
{/* Header */}
LiveDash
{/* Hero Section */}
AI-Powered Analytics Platform

Transform Customer
Conversations into
Actionable Insights

LiveDash analyzes your customer support conversations with advanced AI to deliver real-time sentiment analysis, automated categorization, and powerful analytics that drive better business decisions.

{/* Features Section */}

Powerful Features for Modern Teams

Everything you need to understand and optimize your customer interactions

{/* Feature Stack */}
{/* Connection Lines */}
{/* Feature Cards */}
{/* AI Sentiment Analysis */}

AI Sentiment Analysis

Automatically analyze customer emotions and satisfaction levels across all conversations with 99.9% accuracy

{/* Smart Categorization */}

Smart Categorization

Intelligently categorize conversations by topic, urgency, and department automatically using advanced ML

{/* Real-time Analytics */}

Real-time Analytics

Get instant insights with beautiful dashboards and real-time performance metrics that update live

{/* Enterprise Security */}

Enterprise Security

Bank-grade security with GDPR compliance, SOC 2 certification, and end-to-end encryption

{/* Lightning Fast */}

Lightning Fast

Process thousands of conversations in seconds with our optimized AI pipeline and global CDN

{/* Global Scale */}

Global Scale

Multi-language support with global infrastructure for teams worldwide, serving 50+ countries

{/* Social Proof */}

Trusted by Growing Companies

10,000+
Conversations Analyzed Daily
99.9%
Accuracy Rate
50+
Enterprise Customers
{/* CTA Section */}

Ready to Transform Your Customer Insights?

Join thousands of teams already using LiveDash to make data-driven decisions and improve customer satisfaction.

{/* Footer */}
); }