summaryrefslogtreecommitdiffhomepage
path: root/src/App.svelte
blob: de37b261ee7b99f4fd1cbddaf6fc4b31b7abb52f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<div class="flex h-screen bg-base-200">
  <!-- Sidebar -->
  <aside class="w-64 bg-base-100 border-r border-base-300 p-4 flex flex-col">
    <h1 class="text-xl font-bold mb-4">Dispatch</h1>
    <nav class="flex-1">
      <ul class="menu">
        <li><a class="active">Projects</a></li>
      </ul>
    </nav>
  </aside>

  <!-- Main content -->
  <main class="flex-1 p-6 overflow-auto">
    <div class="prose">
      <h2>Welcome to Dispatch</h2>
      <p>AI orchestration platform is online.</p>
    </div>
  </main>
</div>