import { Button } from "@/components/ui/button"; import { Puzzle } from "lucide-react"; import { ArrowUpRight } from "lucide-react"; const CUSTOM_PLUGINS_DOCS_URL = "https://docs.getbifrost.ai/plugins"; interface PluginsEmptyStateProps { onCreateClick: () => void; canCreate?: boolean; } export function PluginsEmptyState({ onCreateClick, canCreate = true }: PluginsEmptyStateProps) { return (

Custom plugins extend Bifrost with your own business logic

Build and deploy plugins for custom integrations, workflow automation, and AI governance.
); }