Hello! I am Helen Lin. I am a student at UCSD studying Mathematics-Computer Science. I am from Irvine, California and also South Africa
Don’t say you can’t until you prove you can’t -Les Paul
In my free time, I like to cook and bake and do ocasional arts and crafts.
Somethings that I have baked before are (Images not from the internet)
Pursuing a B.S. in Mathematics-Computer Science
Developer on Triton Software Engineering
Triton Software Engineering is a organization that design and develop software pro-bono to nonprofit organizations.
Projects:
San Diego Taxpayers Association Visualization Website
import { NavLink, useNavigate } from "react-router-dom";
import "./Navbar.css";
export const NavbarLogin: React.FC = () => {
const navigate = useNavigate();
return (
<div>
<NavLink to="/Login" className="links" id="login">
Login
</NavLink>
<button
className="navbar-button"
id="sign-up"
onClick={() => {
navigate("/Signup");
}}
>
Sign Up
</button>
</div>
);
};
To the source file you came from (ReadMe file) click here