import React, { useEffect } from 'react' const CallbackHandler: React.FC = () => { useEffect(() => { // This component is no longer needed since we removed Auth0 from landing page // Redirect to main app window.location.href = 'https://admin.motovaultpro.com' }, []) return (

Redirecting...

Please wait while we redirect you to MotoVaultPro.

) } export default CallbackHandler