Files
bifrost/ui/app/_fallbacks/enterprise/components/cluster/clusterView.tsx
Beyhan Oğur 880f412e2c first commit
2026-04-26 21:52:23 +03:00

16 lines
587 B
TypeScript

import { Layers } from "lucide-react";
import ContactUsView from "../views/contactUsView";
export default function ClusterPage() {
return (
<div className="h-full w-full">
<ContactUsView
className="mx-auto min-h-[80vh]"
icon={<Layers className="h-[5.5rem] w-[5.5rem]" strokeWidth={1} />}
title="Unlock cluster mode to scale reliably"
description="This feature is a part of the Bifrost enterprise license. We would love to know more about your use case and how we can help you."
readmeLink="https://docs.getbifrost.ai/enterprise/clustering"
/>
</div>
);
}