- Restructure sidebar: Start → Guide → Operations → Developers → Reference - Fix EN/RU sidebar order (Installation before Quickstart) - Expand troubleshooting with diagnostics commands and task-log triage - Improve quickstart with prerequisites, pitfalls, and contributor links - Expand installation docs with verification commands - Add cyberpunk hero theme to landing page - Add atomicFile utility with tests and stage-runtime script - Harden team provisioning with better error handling and progress output - Add cross-team communication, kanban, and workSync improvements
31 lines
1.1 KiB
Vue
31 lines
1.1 KiB
Vue
<template>
|
|
<div
|
|
id="hero-demo"
|
|
class="cyber-video-frame"
|
|
role="region"
|
|
aria-label="Watch Agent Teams demo"
|
|
>
|
|
<div class="cyber-video-frame__bezel" aria-hidden="true" />
|
|
<div class="cyber-video-frame__status" aria-hidden="true">
|
|
<span>Team command feed</span>
|
|
<span>Live demo</span>
|
|
</div>
|
|
<div class="cyber-video-frame__content">
|
|
<ClientOnly>
|
|
<Suspense>
|
|
<LazyHeroDemoVideo />
|
|
<template #fallback>
|
|
<div class="cyber-video-frame__fallback" />
|
|
</template>
|
|
</Suspense>
|
|
<template #fallback>
|
|
<div class="cyber-video-frame__fallback" />
|
|
</template>
|
|
</ClientOnly>
|
|
</div>
|
|
<div class="cyber-video-frame__corner cyber-video-frame__corner--tl" aria-hidden="true" />
|
|
<div class="cyber-video-frame__corner cyber-video-frame__corner--tr" aria-hidden="true" />
|
|
<div class="cyber-video-frame__corner cyber-video-frame__corner--bl" aria-hidden="true" />
|
|
<div class="cyber-video-frame__corner cyber-video-frame__corner--br" aria-hidden="true" />
|
|
</div>
|
|
</template>
|