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,34 @@
import { Dog } from "lucide-react";
import ContactUsView from "../../views/contactUsView";
interface EnableToggleProps {
enabled: boolean;
onToggle: () => void;
disabled?: boolean;
}
interface DatadogConnectorViewProps {
onDelete?: () => void;
isDeleting?: boolean;
enableToggle?: EnableToggleProps;
}
export default function DatadogConnectorView(_props: DatadogConnectorViewProps) {
return (
<div className="space-y-6">
{/* Content - OSS: paywall only; no delete/save buttons */}
<div className="space-y-4">
<div className="flex w-full flex-col items-center justify-center py-8">
<ContactUsView
align="middle"
className="mx-auto w-full max-w-lg"
icon={<Dog className="h-[5.5rem] w-[5.5rem]" strokeWidth={1} />}
title="Unlock native Datadog data ingestion for better observability"
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/datadog-connector"
/>
</div>
</div>
</div>
);
}