import { Button } from "@/components/ui/button";
import Link from "next/link";
/** used when there is a outage */
export const banner = {
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! */}>
),
};