···11-import Link from "next/link";
22-import { AlertTriangle } from "lucide-react";
33-44-import { Alert, AlertDescription, AlertTitle } from "@openstatus/ui";
55-66-export function ProFeatureAlert() {
77- return (
88- <Alert>
99- <AlertTriangle className="h-4 w-4" />
1010- <AlertTitle>Custom domains are a Pro feature.</AlertTitle>
1111- <AlertDescription>
1212- If you want to use your own domain, please upgrade to the Pro plan. Go
1313- to{" "}
1414- <Link
1515- href="../settings/billing"
1616- className="text-foreground inline-flex items-center font-medium underline underline-offset-4 hover:no-underline"
1717- >
1818- settings
1919- </Link>
2020- .
2121- </AlertDescription>
2222- </Alert>
2323- );
2424-}