import { Link } from "react-router-dom"; import { Button } from "@/components/ui/button"; import { Card, CardContent } from "@/components/ui/card"; import { Play, ArrowRight, Users, Lock, Terminal, Shield, MonitorPlay, } from "lucide-react"; const demos = [ { id: "getting-started", title: "Getting Started with Secuird", description: "A comprehensive overview of Secuird's features and how to set up your organization.", duration: "12 min", category: "Overview", icon: Shield, }, { id: "social-login", title: "Social Login Setup", description: "Connect Microsoft 365, Google Workspace, or GitHub for seamless single sign-on.", duration: "8 min", category: "Authentication", icon: Users, }, { id: "mfa-setup", title: "MFA Configuration", description: "Configure multi-factor authentication policies for your organization.", duration: "6 min", category: "Security", icon: Lock, }, { id: "ssh-certificates", title: "SSH Certificate Authority", description: "Set up SSH certificate signing for secure, auditable server access.", duration: "15 min", category: "SSH Access", icon: Terminal, }, { id: "oidc-clients", title: "OIDC Client Setup", description: "Register applications as OIDC clients for seamless authentication.", duration: "10 min", category: "Integration", icon: MonitorPlay, }, ]; export default function DemoPage() { return ( <> {/* Hero */}
Product Demos

See Secuird in Action

Watch our demo videos to see how Secuird can simplify identity and access management for your organization.

{/* Featured Demo */}

Featured Demo

Start here for a complete overview of Secuird

Getting Started with Secuird

Video placeholder — Coming soon

Overview 12 min

Getting Started with Secuird

A comprehensive walkthrough of Secuird's core features. Learn how to set up your organization, configure authentication methods, and enable SSH certificate signing.

{/* All Demos */}

All Demo Videos

Explore specific features with our detailed walkthroughs

{demos.map((demo) => (
{demo.category} {demo.duration}

{demo.title}

{demo.description}

))}
{/* Request Custom Demo */}

Need a Custom Demo?

Our team can provide a personalized demo tailored to your organization's specific requirements. We'll walk through your use cases and show you how Secuird can help.

  • 30-minute live session with our team
  • Tailored to your specific use cases
  • Q&A with product experts

Request Demo

{/* CTA */}

Ready to Try It Yourself?

Start your free trial today. No credit card required. Full access to all features.

); }