← back to Hormuzy

mockups/076-sushi-bar-counter.html

197 lines

<!doctype html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>sushi-bar-counter — Four Horsemen Studio</title>
  <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@700&family=Inter:wght@400;600&display=swap">
  <style>
    :root {
      --bg: #1a1a1a;
      --primary: #fdfaf0;
      --accent1: #7a1f1a;
      --accent2: #3a4a2c;
      --accent3: #ddd5c2;
    }
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      background-color: var(--bg);
      color: var(--primary);
      font-family: 'Inter', sans-serif;
      display: flex;
      flex-direction: column;
      height: 100vh;
      width: 1440px;
      margin: 0 auto;
    }
    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 40px;
      font-family: 'Noto Serif JP', serif;
      font-size: 24px;
      border-bottom: 1px solid var(--accent3);
    }
    header select {
      padding: 8px 12px;
      font-size: 16px;
      color: var(--primary);
      background-color: var(--accent2);
      border: 1px solid var(--accent3);
      border-radius: 4px;
    }
    header .status {
      padding: 6px 12px;
      font-size: 14px;
      background-color: var(--accent2);
      color: var(--primary);
      border-radius: 4px;
    }
    main {
      display: flex;
      flex: 1;
      overflow: hidden;
    }
    .left-pane {
      width: 40%;
      display: flex;
      flex-direction: column;
      padding: 20px;
      border-right: 1px solid var(--accent3);
      overflow-y: auto;
      background-color: var(--accent2);
    }
    .chat-log {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 20px;
    }
    .chat-message {
      display: flex;
      gap: 12px;
    }
    .chat-message.user {
      flex-direction: row-reverse;
    }
    .chat-message .text {
      background-color: var(--accent1);
      padding: 12px 16px;
      border-radius: 8px;
      max-width: 70%;
      font-size: 14px;
    }
    .chat-input {
      display: flex;
      gap: 10px;
    }
    .chat-input input {
      flex: 1;
      padding: 10px;
      font-size: 14px;
      border: 1px solid var(--accent3);
      border-radius: 4px;
      background-color: var(--accent2);
      color: var(--primary);
    }
    .chat-input button {
      padding: 10px 16px;
      font-size: 14px;
      background-color: var(--accent1);
      color: var(--primary);
      border: none;
      border-radius: 4px;
      cursor: pointer;
    }
    .right-pane {
      width: 60%;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      padding: 20px;
      overflow-y: auto;
    }
    .panel {
      background-color: var(--accent2);
      border: 1px solid var(--accent3);
      border-radius: 6px;
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .panel h2 {
      font-family: 'Noto Serif JP', serif;
      font-size: 18px;
      color: var(--accent1);
    }
    .panel p {
      font-size: 14px;
      line-height: 1.6;
      color: var(--primary);
    }
    .panel .placeholder {
      font-style: italic;
      color: var(--accent3);
    }
  </style>
</head>
<body>
  <header>
    <span>FOUR HORSEMEN STUDIO</span>
    <div>
      <select>
        <option>Sashimi Sutra</option>
        <option>Wasabi Whispers</option>
        <option>Edomae Elegy</option>
      </select>
      <span class="status">idle</span>
    </div>
  </header>
  <main>
    <div class="left-pane">
      <div class="chat-log">
        <div class="chat-message user">
          <div class="text">/run-topic "Umami Bloom"</div>
        </div>
        <div class="chat-message">
          <div class="text">Topic initiated: Crafting a narrative of toro's decadence through the lens of a single wasabi root.</div>
        </div>
        <div class="chat-message user">
          <div class="text">/stampede "Sushi Counter Renaissance"</div>
        </div>
        <div class="chat-message">
          <div class="text">Stampede mode: 3 agents converging on the theme of 'sushi as performance art'—expect a symphony of nigiri, sashimi, and sashimi.</div>
        </div>
      </div>
      <div class="chat-input">
        <input type="text" placeholder="What would you like to slice today?">
        <button>→</button>
      </div>
    </div>
    <div class="right-pane">
      <div class="panel">
        <h2>Preview</h2>
        <p>A delicate balance of vinegared rice, fresh tuna, and a whisper of yuzu—today’s special is the <em>'Otoro Ode'</em>. Slice with the precision of a master chukka.</p>
      </div>
      <div class="panel">
        <h2>Paper</h2>
        <p>Ink flows like wasabi—our paper designs are sharp, clean, and cut to perfection. The <em>'Sashimi Sutra'</em> manuscript is now open for annotation.</p>
      </div>
      <div class="panel">
        <h2>Figma</h2>
        <p>Design boards are laid out like a sushi counter, each element meticulously placed. Current focus: <em>'Edomae Elegy'</em>—a tribute to the art of hand-rolled maki.</p>
      </div>
      <div class="panel">
        <h2>Canva</h2>
        <p>Arrange your ingredients with precision—today’s canva is a masterpiece of umami. The <em>'Wasabi Whispers'</em> template awaits your creative touch.</p>
      </div>
    </div>
  </main>
</body>
</html>