first commit

This commit is contained in:
Beyhan Oğur
2026-04-26 21:52:23 +03:00
commit 880f412e2c
2662 changed files with 866266 additions and 0 deletions

View File

@@ -0,0 +1,49 @@
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 (
<div
className="flex min-h-[80vh] w-full flex-col items-center justify-center gap-4 py-16 text-center"
data-testid="plugins-empty-state"
>
<div className="text-muted-foreground">
<Puzzle className="h-[5.5rem] w-[5.5rem]" strokeWidth={1} />
</div>
<div className="flex flex-col gap-1">
<h1 className="text-muted-foreground text-xl font-medium">Custom plugins extend Bifrost with your own business logic</h1>
<div className="text-muted-foreground mx-auto mt-2 max-w-[600px] text-sm font-normal">
Build and deploy plugins for custom integrations, workflow automation, and AI governance.
</div>
<div className="mx-auto mt-6 flex flex-row flex-wrap items-center justify-center gap-2">
<Button
variant="outline"
aria-label="Read more about custom plugins (opens in new tab)"
data-testid="plugins-button-read-more"
onClick={() => {
window.open(`${CUSTOM_PLUGINS_DOCS_URL}?utm_source=bfd`, "_blank", "noopener,noreferrer");
}}
>
Read more <ArrowUpRight className="text-muted-foreground h-3 w-3" />
</Button>
<Button
aria-label="Create your first plugin"
data-testid="plugins-button-install-new"
onClick={onCreateClick}
disabled={!canCreate}
>
Install New Plugin
</Button>
</div>
</div>
</div>
);
}