import Link from "next/link"; import { ArrowRight } from "lucide-react"; import { chapters } from "@/content/chapters"; import { pad } from "@/lib/utils"; import { Kbd } from "@/components/ui/Kbd"; import { CoverKeys } from "@/components/chrome/CoverKeys"; export default function Cover() { return (
Black Bee Drones · Nectar SDK 2026
A Presentation

AI for Aerial Robotics

From the perceptron to the Nectar SDK detection workflow.
Twelve chapters tracing the field, the math, the architectures, and the practice we use at Black Bee.

Press or to start · change chapters · change slides
Contents
    {chapters.map((c) => (
  1. {pad(c.number)} {c.title}
  2. ))}
); }