Created
February 28, 2020 14:29
-
-
Save ashour/de838d4cf12ab992a0aadfea23ff9427 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from "react"; | |
import { Link } from "react-router-dom"; | |
function Home() { | |
return ( | |
<div className="Home"> | |
<div className="columns"> | |
<div className="column"> | |
<figure className="image"> | |
<img src="/img/home.jpg" /> | |
</figure> | |
</div> | |
<div className="column"> | |
<h2 className="is-size-3">Find Your Next Game</h2> | |
<p> | |
Vote with thousands of other players on games and find your | |
favourite! | |
</p> | |
<p style={{ marginTop: "1rem" }}> | |
<Link to="/games" className="button is-link"> | |
Check out the games! | |
</Link> | |
</p> | |
</div> | |
</div> | |
</div> | |
); | |
} | |
export default Home; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment