Created
February 28, 2020 15:25
-
-
Save ashour/42aeba2b68a193a075f7432f6374e353 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"; | |
import { FormattedMessage } from "react-intl"; | |
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"> | |
<FormattedMessage id="home.title" /> | |
</h2> | |
<p> | |
<FormattedMessage id="home.lead" /> | |
</p> | |
<p style={{ marginTop: "1rem" }}> | |
<Link to="/games" className="button is-link"> | |
<FormattedMessage id="home.c2a" /> | |
</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