import { Alert } from "@calcom/ui/Alert"; import { Alert as AlertV2 } from "@calcom/ui/v2/core/Alert"; 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 Cal.com.{" "} Go back to previous version . } /> ); return ( Want to try the new version of Cal.com?{" "} Opt-in to our V2 beta . } /> ); } export default UserV2OptInBanner;