home rebase

This commit is contained in:
2022-12-28 13:55:06 -05:00
parent e4a0699924
commit 948ec46e81
9 changed files with 23517 additions and 4891 deletions

View File

@@ -1,15 +1,26 @@
import React from 'react';
import React from "react";
import ChessBed from "../componets/ChessBed.js";
export default function Home() {
return (
<div id='home'>
<div className='centerContent' data-aos="fade-up">
<div id='HomeContent'>
<h1>Andrew Simonson</h1>
<h3>Computer Science student at Rochester Institute of Technology</h3>
</div>
return (
<div id="home">
<div className="homeground">
<div className="relative">
<div className="flex">
<div id="HomeContent" data-aos="fade-up">
<h1>Andrew Simonson</h1>
<h3>
Computer Science student at Rochester Institute of Technology
</h3>
</div>
</div>
<div className="onRight" data-aos="fade-up">
<div className="chess">
<ChessBed username="asimonson1125"></ChessBed>
</div>
</div>
</div>
)
}
</div>
</div>
);
}