import React, { useEffect } from "react"; import ChessBed from "../componets/ChessBed.js"; export default function Home() { const langstyle = { width: "350px", height: "165px", border: "none", display: "block", }; useEffect(() => { // This will run when the page first loads and whenever the title changes document.title = "Andrew Simonson - Portfolio Home"; }, []); return (

Andrew Simonson

Computer Science student at Rochester Institute of Technology

); }