Github-User-Page

Helen Lin’s Page

Panda Picture

Table of Contents

About Me As A Person

Background

Hello! I am Helen Lin. I am a student at UCSD studying Mathematics-Computer Science. I am from Irvine, California and also South Africa

Favorite Quote

Don’t say you can’t until you prove you can’t -Les Paul

Hobbies

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)

About Me as a Programmer

Education

Pursuing a B.S. in Mathematics-Computer Science

Relevant Classes Taken at UCSD

Experience

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>
  );
};
  1. Y Stem and Chess Mobile Application
    • Mobile Application that allows students of the client organization to play chess with each other.

To the source file you came from (ReadMe file) click here