Skip to content
Open
Show file tree
Hide file tree
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
211 changes: 211 additions & 0 deletions src/About.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,211 @@
import React from "react";
import CssBaseline from "@material-ui/core/CssBaseline";
import Grid from "@material-ui/core/Grid";
import Typography from "@material-ui/core/Typography";
import Container from "@material-ui/core/Container";
import Box from "@material-ui/core/Box";
import { makeStyles } from "@material-ui/core/styles";

import gabrielSilvaImg from "./assets/img/gabriel-silva.png";
import jonathanThomazImg from "./assets/img/jonathan-thomaz.jpg";
import brunoMarcosImg from "./assets/img/bruno-marcos.jpg";
import laviniaBeghiniImg from "./assets/img/lavinia-beghini.jpg";
import caioCesarImg from "./assets/img/caio-cesar.jpg";

const useStyles = makeStyles((theme) => ({
icon: {
marginRight: theme.spacing(2),
},
heroContent: {
backgroundColor: theme.palette.background.paper,
paddingTop: 40,
height: "50vh",
},
heroText: {
fontFamily: "Poppins, sans-serif",
color: "#000000",
fontSize: 50,
marginTop: 20,
},
description: {
fontFamily: "Poppins, sans-serif",
color: "#000000",
fontSize: 18,
marginTop: 5,
padding: 15,
},
heroDev: {
fontFamily: "Poppins, sans-serif",
color: "#000000",
fontSize: 30,
padding: 15,
marginTop: 5,
},
link: {
fontFamily: "Poppins, sans-serif",
fontSize: 15,
paddingLeft: 15,
},
spacing: {
marginBottom: 5,
},
secondBox: {
backgroundColor: "#ffffff",
}
}));


export default function About() {
const classes = useStyles();

return (
<React.Fragment>
<CssBaseline />
<Container fluid>
<Box
className={classes.heroContent}>
<Typography
className={classes.heroText}
display="flex"
component="h1"
align="center"
>
Sobre
</Typography>
<Typography
className={classes.description}
display="flex"
align="justify"
>
Este projeto foi desenvolvido como projeto de seleção de estágio da App Masters.
Temos como objetivo montar uma biblioteca pública, onde todos podem usufruir e adquirir
conhecimento!
</Typography>
<Typography
className={classes.heroDev}
display="flex"
component="h1"
align="justify"
>
Desenvolvedores
</Typography>
</Box>
</Container>
<Container fluid>
<Box
className={classes.secondBox}>
<Grid container className={classes.spacing}>
<Grid item xs={12} md={3}>
<img width="200" height="200" src={gabrielSilvaImg}></img>
</Grid>
<Grid item xs={12} md={6}>
<Typography
className={classes.heroDev}
display="flex"
component="h3"
align="justify"
>
Gabriel Silva
</Typography>
<Typography
className={classes.link}
display="flex"
align="justify"
>
<a target="_blank" href="https://bit.ly/2GAYt2E">https://bit.ly/2GAYt2E</a>
</Typography>
</Grid>
</Grid>
<Grid container className={classes.spacing}>
<Grid item xs={12} md={3}>
<img width="200" height="200" src={jonathanThomazImg}></img>
</Grid>
<Grid item xs={12} md={6}>
<Typography
className={classes.heroDev}
display="flex"
component="h3"
align="justify"
>
Jonathan Thomaz
</Typography>
<Typography
className={classes.link}
display="flex"
align="justify"
>
<a target="_blank" href="https://bit.ly/3nrod2a">https://bit.ly/3nrod2a</a>
</Typography>
</Grid>
</Grid>
<Grid container className={classes.spacing}>
<Grid item xs={12} md={3}>
<img width="200" height="200" src={brunoMarcosImg}></img>
</Grid>
<Grid item xs={12} md={6}>
<Typography
className={classes.heroDev}
display="flex"
component="h3"
align="justify"
>
Bruno Marcos
</Typography>
<Typography
className={classes.link}
display="flex"
align="justify"
>
<a target="_blank" href="https://bit.ly/3iFg0E4">https://bit.ly/3iFg0E4</a>
</Typography>
</Grid>
</Grid>
<Grid container className={classes.spacing}>
<Grid item xs={12} md={3}>
<img width="200" height="200" src={laviniaBeghiniImg}></img>
</Grid>
<Grid item xs={12} md={6}>
<Typography
className={classes.heroDev}
display="flex"
component="h3"
align="justify"
>
Lavínia Beghini
</Typography>
<Typography
className={classes.link}
display="flex"
align="justify"
>
<a target="_blank" href="https://bit.ly/3lrFLJO">https://bit.ly/3lrFLJO</a>
</Typography>
</Grid>
</Grid>
<Grid container className={classes.spacing}>
<Grid item xs={12} md={3}>
<img width="200" height="200" src={caioCesarImg}></img>
</Grid>
<Grid item xs={12} md={6}>
<Typography
className={classes.heroDev}
display="flex"
component="h3"
align="justify"
>
Caio César
</Typography>
<Typography
className={classes.link}
display="flex"
align="justify"
>
<a target="_blank" href="https://bit.ly/3lqd8MV">https://bit.ly/3lqd8MV</a>
</Typography>
</Grid>
</Grid>
</Box>
</Container>
</React.Fragment>
);
}
2 changes: 2 additions & 0 deletions src/Routes.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@ import React from "react";
import { BrowserRouter, Switch, Route } from "react-router-dom";
import Home from "./Home";
import Product from "./Products";
import About from "./About";

const Routes = () => (
<BrowserRouter>
<Switch>
<Route exact path="/" component={Home} />
<Route path="/products/:id" component={Product} />
<Route path="/about" component={About} />
</Switch>
</BrowserRouter>
);
Expand Down
Binary file added src/assets/img/bruno-marcos.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/img/caio-cesar.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/img/gabriel-silva.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/img/jonathan-thomaz.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/img/lavinia-beghini.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.