import { APP_NAME } from "@calcom/lib/constants"; function UserV2OptInBanner() { // Only show on client-side if (typeof document === "undefined") return null; const hasV2OptInCookie = document.cookie.includes("calcom-v2-early-access=1"); if (hasV2OptInCookie) return (

You're using the new version of {APP_NAME}.{" "} Go back .

); return (

Want to try the new version of {APP_NAME}?{" "} Opt-in to our v2.0 beta .

); } export default UserV2OptInBanner;