···11+import { Alert, AlertDescription, AlertTitle } from "@openstatus/ui";
22+import { Megaphone } from "lucide-react";
33+import Link from "next/link";
44+55+export function ReportInfoBanner() {
66+ return (
77+ <Alert className="max-w-4xl">
88+ <Megaphone className="h-4 w-4" />
99+ <AlertTitle>Looking for Status Reports?</AlertTitle>
1010+ <AlertDescription>
1111+ The incidents will be created automatically if an endpoint fails. If you
1212+ want to inform your users about a planned maintenance, or a current
1313+ issue you can create a status report. Go to{" "}
1414+ <Link
1515+ className="underline underline-offset-4 hover:text-primary hover:no-underline"
1616+ href="./status-pages"
1717+ >
1818+ Status Pages
1919+ </Link>{" "}
2020+ and select a page you want to report on.
2121+ </AlertDescription>
2222+ </Alert>
2323+ );
2424+}