Skip to content

Instantly share code, notes, and snippets.

@ashour
Created February 28, 2020 14:29
Show Gist options
  • Save ashour/de838d4cf12ab992a0aadfea23ff9427 to your computer and use it in GitHub Desktop.
Save ashour/de838d4cf12ab992a0aadfea23ff9427 to your computer and use it in GitHub Desktop.
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