diff --git a/frontend/src/components/integrations/NoEnvironmentsBanner.tsx b/frontend/src/components/integrations/NoEnvironmentsBanner.tsx new file mode 100644 index 000000000..2dc931d8c --- /dev/null +++ b/frontend/src/components/integrations/NoEnvironmentsBanner.tsx @@ -0,0 +1,32 @@ +import { useRouter } from "next/router"; +import { faWarning } from "@fortawesome/free-solid-svg-icons"; +import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; + +import { Button } from "../v2"; + +interface IProps { + projectId: string; +} + +export const NoEnvironmentsBanner = ({ projectId }: IProps) => { + const router = useRouter(); + + return ( +
+ +
+ + No environments in your project was found + +

+ In order to use integrations, you need to create at least one environment in your project. +

+
+
+ +
+
+ ); +};