From 69d9ffec49e905ed5bd6d394f6c182e3e61bd0ee Mon Sep 17 00:00:00 2001 From: Michel Martins Date: Sat, 4 Oct 2025 14:56:47 -0300 Subject: [PATCH] style: melhorar visual do componente About --- src/about/About.js | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/src/about/About.js b/src/about/About.js index 8efd630..5084870 100644 --- a/src/about/About.js +++ b/src/about/About.js @@ -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 ( - - + + About - + An open source gitlab linting utility. + + Contribute - + Fork the repository and send your pull-requests. -
    +
  • Frontend: {
  • Backend: { https://github.com/globocom/gitlab-lint
  • -
+
+ + License @@ -54,7 +60,7 @@ const About = () => { be licensed under its BSD 3-Clause license. -
+ ); };