Skip to content

Instantly share code, notes, and snippets.

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