diff --git a/frontend/src/Components/Pages/Landing-Page/JoinWithCode.jsx b/frontend/src/Components/Pages/Landing-Page/JoinWithCode.jsx index efa5b7b..4fe1f23 100644 --- a/frontend/src/Components/Pages/Landing-Page/JoinWithCode.jsx +++ b/frontend/src/Components/Pages/Landing-Page/JoinWithCode.jsx @@ -11,7 +11,6 @@ const JoinWithCode = () => { }; const handleJoinRoom = () => { - // Perform actions when the "Join Room" button is clicked console.log('Joining room with code:', meetingCode); }; @@ -24,129 +23,51 @@ const JoinWithCode = () => { return () => window.removeEventListener('resize', updateMedia); }, []); - const containerStyle = { - display: 'flex', - flexDirection: 'row', - justifyContent: 'center', - alignItems: 'center', - marginBottom: '40px', - padding: '20px', - fontWeight: 'bold', - color: 'white', - background: '#1e2228', - borderRadius: '20px', - boxShadow: '0 10px 20px rgba(0, 0, 0, 0.3)', - maxWidth: '90%', - margin: '20px auto', - fontFamily: 'Arial, sans-serif', - fontSize: '18px', - flexWrap: isMobile ? 'wrap' : 'nowrap', - textAlign: isMobile ? 'center' : 'left', - }; - return ( - <> -