import { BookOpen, FlaskConical, PlayCircle, BarChart3, HelpCircle, FileText, Video, ExternalLink, } from "lucide-react"; import { Card, CardContent, CardDescription, CardHeader, CardTitle, } from "~/components/ui/card"; import { Button } from "~/components/ui/button"; import { PageLayout } from "~/components/ui/page-layout"; import Link from "next/link"; export default function HelpCenterPage() { const guides = [ { title: "Getting Started", description: "Learn the basics of HRIStudio and set up your first study.", icon: BookOpen, items: [ { label: "Platform Overview", href: "#" }, { label: "Creating a New Study", href: "#" }, { label: "Managing Team Members", href: "#" }, ], }, { title: "Designing Experiments", description: "Master the visual experiment designer and flow control.", icon: FlaskConical, items: [ { label: "Using the Visual Designer", href: "#" }, { label: "Robot Actions & Plugins", href: "#" }, { label: "Variables & Logic", href: "#" }, ], }, { title: "Running Trials", description: "Execute experiments and manage Wizard of Oz sessions.", icon: PlayCircle, items: [ { label: "Wizard Interface Guide", href: "#" }, { label: "Participant Management", href: "#" }, { label: "Handling Robot Errors", href: "#" }, ], }, { title: "Analysis & Data", description: "Analyze trial results and export research data.", icon: BarChart3, items: [ { label: "Understanding Analytics", href: "#" }, { label: "Exporting Data (CSV/JSON)", href: "#" }, { label: "Video Replay & Annotation", href: "#" }, ], }, ]; return (
{guides.map((guide, index) => (
{guide.title}
{guide.description}
    {guide.items.map((item, i) => (
  • ))}
))}

Video Tutorials

{[ "Introduction to HRIStudio", "Advanced Flow Control", "ROS2 Integration Deep Dive", ].map((title, i) => (
{title}
))}

Still need help?

Contact your system administrator or check the official documentation for technical support.

); }