diff --git a/src/frontend/src/auth/AuthModal.tsx b/src/frontend/src/auth/AuthModal.tsx index bfac31f..cc494e9 100644 --- a/src/frontend/src/auth/AuthModal.tsx +++ b/src/frontend/src/auth/AuthModal.tsx @@ -4,14 +4,11 @@ import { capture } from "../utils/posthog"; import "../styles/AuthModal.scss"; interface AuthModalProps { - title?: string; description?: string; - infoText?: string; } const AuthModal: React.FC = ({ - description = "This is a browser-based developer environment where you can take notes and code side to side.\n\nYour workspace is an Ubuntu virtual machine that we run for you in the cloud", - infoText = "🚧 This is a beta. Consider all data is temporary and might be deleted at any time while we build", + description = "A free whiteboard IDE in your browser.", }) => { const [isMounted, setIsMounted] = useState(false); @@ -33,84 +30,135 @@ const AuthModal: React.FC = ({ {/* Backdrop with blur effect */}