UI Overview

Welcome to the SentinelOS web interface documentation. Find visual guides and component explanations here.

How to add screenshots

  1. Save UI screenshots in the public/images/ui/ folder.
  2. Reference the image path like /images/ui/my-screenshot.png.
  3. Use the <Screenshot> component for styling.

Example:

---
import Screenshot from '../../../components/Screenshot.astro';
---

<Screenshot 
  src="/images/ui/example.png" 
  alt="Main Dashboard View" 
  caption="Dashboard after a clean installation."
/>