> ## Documentation Index
> Fetch the complete documentation index at: https://docs.beta.ontoto.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Introduction

> Learn how to navigate and use the Ontoto dashboard

Watch this walkthrough for an introduction to using the core features of the dashboard.

<video id="intro-video" width="100%" height="450" controls>
  <source src="https://ontoto.com/wp-content/uploads/2026/05/V3-Ontoto-Dashboard-Tutorial.mp4" type="video/mp4" />
</video>

<div
  style={{
display: "flex",
flexDirection: "column",
gap: "8px",
marginTop: "8px",
position: "relative",
zIndex: 50,
}}
>
  {[
      { label: "0:00 Welcome", time: 0 },
      { label: "0:54 Overview", time: 54 },
      { label: "2:09 Devices", time: 129 },
      { label: "4:14 Device Dashboard", time: 254 },
      { label: "10:40 Alarms", time: 640 },
      { label: "14:09 User Management", time: 849 },
      { label: "16:34 Support", time: 994 },
    ].map(({ label, time }) => (
      <a
        key={label}
        href="#intro-video"
        onClick={(e) => {
          e.preventDefault();
          const videoEl = document.getElementById("intro-video");
          if (videoEl instanceof HTMLVideoElement) {
            videoEl.currentTime = time;
            videoEl.play();
          }
        }}
        style={{ fontSize: "0.85rem" }}
      >
        {label}
      </a>
    ))}
</div>
