diff --git a/src/App.jsx b/src/App.jsx
index 04c7f9ec..85b3b3fd 100644
--- a/src/App.jsx
+++ b/src/App.jsx
@@ -1,10 +1,8 @@
import { useState } from 'react'
import './App.css'
-import LoginModal from './components/LoginModal.jsx'
import SignupModal from './components/SignupModal.jsx'
function App() {
- const [showLogin, setShowLogin] = useState(false)
const [showSignup, setShowSignup] = useState(false)
return (
@@ -18,7 +16,7 @@ function App() {
-
@@ -128,22 +120,13 @@ function App() {
- {/* Enhanced Modals */}
- setShowLogin(false)}
- onSwitchToSignup={() => {
- setShowLogin(false)
- setShowSignup(true)
- }}
- />
-
+ {/* Signup Modal */}
setShowSignup(false)}
onSwitchToLogin={() => {
setShowSignup(false)
- setShowLogin(true)
+ window.location.href = 'https://app.thelabelai.com/login'
}}
/>
@@ -151,4 +134,3 @@ function App() {
}
export default App
-