Changes to landing area

This commit is contained in:
AjitSivakumar 2020-12-29 13:05:11 -05:00
parent f434fb8f87
commit ccb990c5bd

View File

@ -10,22 +10,19 @@ export default function Home(props) {
<main className="hero"> <main className="hero">
<div className="landing-header"> <div className="landing-header">
<h1 id="potentia">Potentia</h1> <h1 id="potentia">Potentia</h1>
<h1 id="robotics">Robotics.</h1> <h1 id="robotics">Robotics</h1>
</div> </div>
<div className="landing-subheader"> <div className="landing-subheader">
<p> <p>
The{" "} Moving into the future, one step at a time
<a href="https://tjhsst.fcps.edu/" target="_blank" rel="noreferrer">
Thomas Jefferson High School for Science and Technology
</a>{" "}
Humanoid Robot Project
</p> </p>
</div> </div>
<img <img
className="landing-robot" className="landing-robot"
src={BOT_IMAGES[Math.floor(Math.random() * BOT_IMAGES.length)]} src={BOT_IMAGES[1]}
alt="" alt=""
/> />
</main> </main>
); );
} }