"use client" import { CommandBar } from "@/components/command-bar" import { AgentStrip } from "@/components/agent-strip" import { DigestCard } from "@/components/digest-card" import { TelegramThreadCard } from "@/components/telegram-thread-card" import { StatusFooter } from "@/components/status-footer" import { ScheduleCard } from "@/components/schedule-card" export default function HomePage() { return (
{/* HERO — the command bar is the front door of Tiger. */} {/* AGENTS — one strip, all 5 agents, live state at a glance. */} {/* CONTEXT ROW — digest (left) + Telegram thread (right) */}
{/* SCHEDULE ROW — Tiger's cron jobs + next-run times */} {/* FOOTER — system health strip. Becomes a banner on crash. */}
) }