← back to Hormuzy

mockups/006-aviation-dashboard.html

195 lines

<!doctype html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>aviation-dashboard — Four Horsemen Studio</title>
  <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700&family=Space+Mono:wght@400&display=swap">
  <style>
    :root {
      --bg: #0d1117;
      --primary: #a5d8ff;
      --accent: #ffd43b;
      --alert: #fa5252;
      --text: #212529;
    }
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      font-family: 'Space Mono', monospace;
      background-color: var(--bg);
      color: var(--primary);
      height: 900px;
      display: flex;
      flex-direction: column;
      font-size: 14px;
    }
    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 32px;
      border-bottom: 1px solid #1a1f25;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      letter-spacing: 0.05em;
    }
    header .brand {
      font-size: 1.5rem;
      color: var(--primary);
    }
    header .project-picker {
      padding: 6px 12px;
      background: #1a1f25;
      border-radius: 4px;
      color: var(--primary);
    }
    header .status {
      padding: 6px 12px;
      background: #1a1f25;
      border-radius: 4px;
      color: var(--accent);
    }
    .main {
      display: flex;
      flex: 1;
      overflow: hidden;
    }
    .chat-pane {
      width: 40%;
      background: #1a1f25;
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }
    .chat-log {
      padding: 16px;
      flex: 1;
      overflow-y: auto;
      background: #0d1117;
      border-right: 1px solid #1a1f25;
    }
    .chat-log .message {
      margin: 8px 0;
      padding: 8px 12px;
      background: #1a1f25;
      border-radius: 4px;
      display: flex;
      justify-content: space-between;
    }
    .chat-log .user {
      color: var(--accent);
      font-weight: bold;
    }
    .chat-log .timestamp {
      color: #8892a4;
      font-size: 0.85rem;
    }
    .chat-input {
      padding: 12px;
      display: flex;
      border-top: 1px solid #1a1f25;
    }
    .chat-input input {
      flex: 1;
      padding: 8px;
      background: #1a1f25;
      color: var(--primary);
      border: none;
      border-radius: 4px;
      font-size: 1rem;
    }
    .chat-input button {
      margin-left: 8px;
      padding: 8px 16px;
      background: var(--primary);
      color: var(--bg);
      border: none;
      border-radius: 4px;
      font-weight: bold;
    }
    .panels {
      width: 60%;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-gap: 16px;
      padding: 16px;
      overflow-y: auto;
    }
    .panel {
      background: #1a1f25;
      border-radius: 4px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    .panel-header {
      padding: 12px;
      background: #0d1117;
      font-weight: bold;
      color: var(--primary);
      border-bottom: 1px solid #1a1f25;
    }
    .panel-body {
      flex: 1;
      padding: 12px;
      color: #8892a4;
      font-size: 0.9rem;
      line-height: 1.4;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .panel-body code {
      color: var(--accent);
    }
  </style>
</head>
<body>
  <header>
    <div class="brand">FOUR HORSEMEN</div>
    <div>
      <select class="project-picker">
        <option>Project HORMUZ</option>
        <option>Project KALIMA</option>
        <option>Project SHARQ</option>
      </select>
      <div class="status">idle</div>
    </div>
  </header>
  <div class="main">
    <div class="chat-pane">
      <div class="chat-log">
        <div class="message"><span class="user">AGENT:</span> <span>/run-topic "altimeter settings"</span> <span class="timestamp">09:47</span></div>
        <div class="message"><span class="user">SYSTEM:</span> <span>Initiating topic: "altimeter settings"</span> <span class="timestamp">09:47</span></div>
        <div class="message"><span class="user">AGENT:</span> <span>/stampede "heading adjustments"</span> <span class="timestamp">09:48</span></div>
        <div class="message"><span class="user">SYSTEM:</span> <span>Stampede mode engaged. Heading: 270°</span> <span class="timestamp">09:48</span></div>
      </div>
      <div class="chat-input">
        <input type="text" placeholder="> /command">
        <button>SEND</button>
      </div>
    </div>
    <div class="panels">
      <div class="panel">
        <div class="panel-header">PREVIEW</div>
        <div class="panel-body">Current viewport: 1440x900. Altitude: 35,000ft. Heading: 270°. Status: idle</div>
      </div>
      <div class="panel">
        <div class="panel-header">PAPER</div>
        <div class="panel-body">Sketching wireframe for landing page. Use case: "altitude alerts". Layer: 3 of 5. Status: draft</div>
      </div>
      <div class="panel">
        <div class="panel-header">FIGMA</div>
        <div class="panel-body">Component: "flight status indicator". Variants: 3. Last updated: 09:45. Sync: up to date</div>
      </div>
      <div class="panel">
        <div class="panel-header">CANVA</div>
        <div class="panel-body">Template: "aviation dashboard". Assets: 12. Last export: 09:30. Status: ready for deployment</div>
      </div>
    </div>
  </div>
</body>
</html>