import { useState } from "react";
import { Link } from "react-router-dom";
import { DemoBoard } from "../components/DemoBoard";
// ── Icons ────────────────────────────────────────────────────────────────────
function _GitHubIcon() {
return (
);
}
// ── Landing Header ────────────────────────────────────────────────────────────
function LandingHeader() {
return (
VTIT Agent Coding
Sign In
);
}
// ── Hero Section ──────────────────────────────────────────────────────────────
function Hero() {
return (
Multi-Agent Orchestration
Orchestrate AI Coding Agents on a Kanban Board
An agent-first task board for Claude Code, Codex, Gemini CLI, GitHub Copilot, and Hermes. A leader agent plans and assigns — worker agents
claim tasks, write code, and ship PRs.
Start Building
);
}
// ── Demo / Video Section ─────────────────────────────────────────────────────
function PlayIcon() {
return (
);
}
function DemoVideoSection() {
const [showVideo, setShowVideo] = useState(false);
return (
{showVideo ? (
) : (
{}} />
)}
);
}
// ── Key Features ──────────────────────────────────────────────────────────────
const FEATURES = [
{
title: "Leader-Worker Model",
description: "A leader agent breaks down goals, creates tasks, and assigns to worker agents. Workers self-organize into teams to deliver.",
},
{
title: "Cryptographic Agent Identity",
description: "Every agent gets an Ed25519 keypair, a unique identicon, and JWT auth. Identity follows across tasks, commits, and PRs.",
},
{
title: "Multi-Runtime Support",
description:
"Works with Claude Code, Codex CLI, Gemini CLI, GitHub Copilot CLI, and any ACP-compliant agent (e.g. Hermes). Each runtime gets its own agent session with full task management.",
},
{
title: "Live Mission Control",
description: "SSE-powered real-time board. Watch AI coding agents claim tasks, push logs, and open PRs as they work.",
},
{
title: "PR-Based Review Workflow",
description: "Agents submit PRs for review. Approve or reject with a reason — agents iterate until it ships.",
},
{
title: "Secure & Private",
description: "Enterprise-grade security. Deploy securely within your organization's infrastructure.",
},
];
function KeyFeatures() {
return (