Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 14 additions & 8 deletions src/about/About.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,29 +2,32 @@
// Licensed under the BSD 3-Clause License

import React from "react";
import { Box, Link, Typography } from "@material-ui/core";
import { Box, Link, Typography, Divider } from "@material-ui/core";

const About = () => {
return (
<React.Fragment>
<Typography variant="h3" gutterBottom>
<Box maxWidth="800px" mx="auto" p={4}>
<Typography variant="h3" gutterBottom align="center">
About
</Typography>
<Typography variant="body1" gutterBottom>
<Typography variant="body1" gutterBottom align="center">
An open source gitlab linting utility.
</Typography>

<Divider style={{ margin: "24px 0" }} />

<Box pt={2} pb={2}>
<Typography variant="h4" gutterBottom>
Contribute
</Typography>
<Typography variant="body1">
<Typography variant="body1" gutterBottom>
Fork the repository and send your pull-requests.
</Typography>
<ul>
<Box component="ul" pl={3}>
<li>
<span>Frontend: </span>
<Link
style={{ margin: "24px 0" }}
color="secondary"
target="_blank"
href="https://github.com/globocom/gitlab-lint-react"
Expand All @@ -35,16 +38,19 @@ const About = () => {
<li>
<span>Backend: </span>
<Link
style={{ margin: "24px 0" }}
color="secondary"
target="_blank"
href="https://github.com/globocom/gitlab-lint"
>
https://github.com/globocom/gitlab-lint
</Link>
</li>
</ul>
</Box>
</Box>

<Divider style={{ margin: "24px 0" }} />

<Box pt={2} pb={2}>
<Typography variant="h4" gutterBottom>
License
Expand All @@ -54,7 +60,7 @@ const About = () => {
be licensed under its BSD 3-Clause license.
</Typography>
</Box>
</React.Fragment>
</Box>
);
};

Expand Down