AgentLayerZero Playground

<EmptyState />

Standalone empty-state block — title, subtitle, logo, and "powered by" link. <MessageList /> renders this automatically when its messages array is empty; use the standalone for custom layouts.

<script setup lang="ts">
import { EmptyState } from '@agent-layer-zero/dendrite-vue'
</script>

<template>
  <EmptyState
    title="What's on your mind?"
    subtitle="Local AI, no data leaves your browser."
    logo-src="/your-logo.png"
  />
</template>