diff options
| author | Adam Malczewski <[email protected]> | 2026-04-01 03:36:49 +0900 |
|---|---|---|
| committer | Adam Malczewski <[email protected]> | 2026-04-01 03:36:49 +0900 |
| commit | aec635c26ab1bb5bfb8b0ac0d7adda6ef17c2d75 (patch) | |
| tree | b6736c65074c146e615033a58427e4a5820ca35d /src/App.svelte | |
| parent | e872165ed8e6f761aa37d9d9222dd6eeb05984ed (diff) | |
| download | dispatch-web-aec635c26ab1bb5bfb8b0ac0d7adda6ef17c2d75.tar.gz dispatch-web-aec635c26ab1bb5bfb8b0ac0d7adda6ef17c2d75.zip | |
initbackend-tester
Diffstat (limited to 'src/App.svelte')
| -rw-r--r-- | src/App.svelte | 106 |
1 files changed, 18 insertions, 88 deletions
diff --git a/src/App.svelte b/src/App.svelte index dafc575..de37b26 100644 --- a/src/App.svelte +++ b/src/App.svelte @@ -1,89 +1,19 @@ -<script> - import svelteLogo from './assets/svelte.svg' - import viteLogo from './assets/vite.svg' - import heroImg from './assets/hero.png' - import Counter from './lib/Counter.svelte' -</script> +<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> -<section id="center"> - <div class="hero"> - <img src={heroImg} class="base" width="170" height="179" alt="" /> - <img src={svelteLogo} class="framework" alt="Svelte logo" /> - <img src={viteLogo} class="vite" alt="Vite logo" /> - </div> - <div> - <h1>Get started</h1> - <p>Edit <code>src/App.svelte</code> and save to test <code>HMR</code></p> - </div> - <Counter /> -</section> - -<div class="ticks"></div> - -<section id="next-steps"> - <div id="docs"> - <svg class="icon" role="presentation" aria-hidden="true"> - <use href="/icons.svg#documentation-icon"></use> - </svg> - <h2>Documentation</h2> - <p>Your questions, answered</p> - <ul> - <li> - <a href="https://vite.dev/" target="_blank" rel="noreferrer"> - <img class="logo" src={viteLogo} alt="" /> - Explore Vite - </a> - </li> - <li> - <a href="https://svelte.dev/" target="_blank" rel="noreferrer"> - <img class="button-icon" src={svelteLogo} alt="" /> - Learn more - </a> - </li> - </ul> - </div> - <div id="social"> - <svg class="icon" role="presentation" aria-hidden="true"> - <use href="/icons.svg#social-icon"></use> - </svg> - <h2>Connect with us</h2> - <p>Join the Vite community</p> - <ul> - <li> - <a href="https://github.com/vitejs/vite" target="_blank" rel="noreferrer"> - <svg class="button-icon" role="presentation" aria-hidden="true"> - <use href="/icons.svg#github-icon"></use> - </svg> - GitHub - </a> - </li> - <li> - <a href="https://chat.vite.dev/" target="_blank" rel="noreferrer"> - <svg class="button-icon" role="presentation" aria-hidden="true"> - <use href="/icons.svg#discord-icon"></use> - </svg> - Discord - </a> - </li> - <li> - <a href="https://x.com/vite_js" target="_blank" rel="noreferrer"> - <svg class="button-icon" role="presentation" aria-hidden="true"> - <use href="/icons.svg#x-icon"></use> - </svg> - X.com - </a> - </li> - <li> - <a href="https://bsky.app/profile/vite.dev" target="_blank" rel="noreferrer"> - <svg class="button-icon" role="presentation" aria-hidden="true"> - <use href="/icons.svg#bluesky-icon"></use> - </svg> - Bluesky - </a> - </li> - </ul> - </div> -</section> - -<div class="ticks"></div> -<section id="spacer"></section> + <!-- 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> |
