17 lines
486 B
Vue
17 lines
486 B
Vue
|
|
<script setup lang="ts">
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<div class="min-h-screen">
|
||
|
|
<header class="border-b border-gray-800 px-6 py-4 flex items-center justify-between">
|
||
|
|
<router-link to="/" class="text-lg font-bold text-gray-100 hover:text-white no-underline">
|
||
|
|
Kin
|
||
|
|
</router-link>
|
||
|
|
<span class="text-xs text-gray-600">multi-agent orchestrator</span>
|
||
|
|
</header>
|
||
|
|
<main class="max-w-6xl mx-auto px-6 py-6">
|
||
|
|
<router-view />
|
||
|
|
</main>
|
||
|
|
</div>
|
||
|
|
</template>
|