import type { Metadata } from "next"; import "./globals.css"; export const metadata: Metadata = { title: "AI for Aerial Robotics — Black Bee", description: "From perceptrons to the Nectar SDK detection workflow. A presentation on artificial intelligence for the Black Bee Drones team.", }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return ( {children} ); }