A glassmorphic command input bar for AI copilots with an animated motion layout container.
"use client"; import { AiCommandBar } from "@/components/ui/forge-ai-command-bar"; export default function Default() { return ( <div className="flex min-h-[420px] w-full items-center justify-center bg-background p-8"> <div className="w-full max-w-md"> <AiCommandBar /> </div> </div> ); }