summaryrefslogtreecommitdiffhomepage
path: root/app/javascript/components/Home.jsx
blob: 563ec884f6a730a3bdc2a2d0d08fe4d71403ac08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import React from "react";
import { Link } from "react-router-dom";

export default () => (
  <div className="vw-100 vh-100 primary-color d-flex align-items-center justify-content-center">
    <div className="jumbotron jumbotron-fluid bg-transparent">
      <div className="container secondary-color">
        <h1 className="display-4">Games!</h1>
        <p className="lead">
			All the games I have worked on that run on the web!
        </p>
        <hr className="my-4" />
        <Link
          to="/games"
          className="btn btn-lg custom-button"
          role="button"
        >
          View Games
        </Link>
        <Link
          to="/blogs"
          className="btn btn-lg custom-button"
          role="button"
        >
          View Blogs
        </Link>
      </div>
    </div>
  </div>
);