diff --git a/src/config/banner.tsx b/src/config/banner.tsx index 111cdfc..4724357 100644 --- a/src/config/banner.tsx +++ b/src/config/banner.tsx @@ -1,7 +1,23 @@ -import { Server } from "lucide-react"; +import { Button } from "@/components/ui/button"; +import Link from "next/link"; /** used when there is a outage */ export const banner = { - isBanner: false, - bannerText: <>, + isBanner: + process.env.NEXT_PUBLIC_VERCEL_ENV !== "production" + ? true + : /** Set this to true when outage --->*/ false, + bannerText: + process.env.NEXT_PUBLIC_VERCEL_ENV !== "production" ? ( + <> + Your not in production!{" "} + + + + + ) : ( + <>{/** Set this to an explanation! */} + ), };