import React, { useEffect } from 'react'; import { Link } from 'react-router-dom'; import AuthImage from '../images/auth-image.jpg'; import AuthDecoration from '../images/auth-decoration.png'; function Signin() { useEffect(() => { localStorage.setItem('svgKey', '') }, []) return (
{/* Content */}
{/* Header */}
{/* Logo */}

Welcome back! ✨

{/* Form */}
Forgot Password?
Sign In
{/* Footer */}
Don’t you have an account? Sign Up
{/* Warning */}
To support you during the pandemic super pro features are free until March 31st.
{/* Image */}
); } export default Signin;