-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
199 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
import './styles.css'; | ||
import boycoding from '../../assets/imagem-azul-desenvolvimento.png'; | ||
import girl from '../../assets/imagem-verde-dados.png'; | ||
import telefone from '../../assets/imagem-vermelho-comunicacao.png'; | ||
|
||
export default function ConhecaFrentes() { | ||
return ( | ||
<div className="conhecaFrentes"> | ||
<div className="textoPrincipal_bluebox"> | ||
<div className="texto"> | ||
<h2 className="tituloPrincipal"> | ||
Conheça as frentes <br /> | ||
do Caronaê | ||
</h2> | ||
<p> | ||
Os membros do projeto de extensão Caronaê atuam em três | ||
frentes principais: desenvolvimento, comunicação e dados. | ||
Conheça elas ao lado. | ||
</p> | ||
</div> | ||
<div className="caixaAzul"> | ||
<div className="textoAzul"> | ||
<h2>Desenvolvimento</h2> | ||
<p> | ||
A equipe de desenvolvimento trabalha para garantir um | ||
aplicativo de qualidade e com uma experiência de | ||
usuário agradável. | ||
</p> | ||
</div> | ||
<img src={boycoding} alt="boy coding" /> | ||
</div> | ||
</div> | ||
<div className="redBox_greenBox"> | ||
<div className="redBox"> | ||
<div className="textoVermelho"> | ||
<h2>Comunicação</h2> | ||
<p> | ||
Já a equipe de comunicação se dedica a disseminar | ||
informações sobre o projeto e conscientizar a população | ||
sobre a importância das caronas para a | ||
sustentabilidade. | ||
</p> | ||
</div> | ||
<img src={telefone} alt="Telefone" /> | ||
</div> | ||
|
||
<div className="greenBox"> | ||
<div className="textoVerde"> | ||
<h2>Dados</h2> | ||
<p> | ||
Por fim, a equipe de dados é responsável por coletar e | ||
analisar informações relevantes para aprimorar o | ||
projeto e torná-lo cada vez mais eficiente. | ||
</p> | ||
</div> | ||
<img src={girl} alt="Girl" className="fotoVerde" /> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,136 @@ | ||
@import url('https://fonts.googleapis.com/css2?family=Lato&family=Poppins:wght@600&display=swap'); | ||
@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap'); | ||
|
||
|
||
.conhecaFrentes{ | ||
width: 1159px; | ||
height: 532px; | ||
justify-content: center; | ||
position: relative; | ||
margin: 0 auto; | ||
|
||
} | ||
|
||
.tituloPrincipal{ | ||
font-family: 'Poppins', sans-serif; | ||
font-weight: 600; | ||
font-style: normal; | ||
} | ||
|
||
.texto{ | ||
margin-right: 30px; | ||
width: 380px; | ||
height: 194px; | ||
} | ||
|
||
.textoPrincipal_bluebox{ | ||
width: 1157px; | ||
height: 250px; | ||
display: flex; | ||
} | ||
|
||
.textoPrincipal > p { | ||
font-family: 'Lato', sans-serif; | ||
font-weight: 400; | ||
font-style: normal | ||
} | ||
|
||
.caixaAzul{ | ||
display: flex; | ||
width: 749px; | ||
height: 250px; | ||
background-color:#2B388A ; | ||
border-radius: 25px; | ||
} | ||
|
||
.textoAzul{ | ||
width: 358px; | ||
height: 250px; | ||
margin-top: 40px; | ||
margin-left: 26px; | ||
} | ||
|
||
.textoAzul > p{ | ||
color:white; | ||
font-family: 'Lato', sans-serif; | ||
font-weight: 400; | ||
font-style: normal | ||
} | ||
|
||
.textoAzul > h2{ | ||
color: white; | ||
font-family: 'Poppins', sans-serif; | ||
font-weight: 600; | ||
font-style: normal; | ||
|
||
} | ||
|
||
.redBox_greenBox{ | ||
width: 1159px; | ||
height: 250px; | ||
display: flex; | ||
margin-top: 32px; | ||
} | ||
|
||
.redBox{ | ||
width: 663px; | ||
height: 250px; | ||
background-color: #EB3D38; | ||
border-radius: 25px; | ||
display: flex; | ||
} | ||
|
||
.textoVermelho{ | ||
width: 310px; | ||
height: 200px; | ||
margin-top: 40px; | ||
margin-left: 26px; | ||
} | ||
.textoVermelho > h2{ | ||
color: white; | ||
font-family: 'Poppins', sans-serif; | ||
font-weight: 600; | ||
font-style: normal; | ||
} | ||
|
||
.textoVermelho> p{ | ||
color:white; | ||
font-family: 'Lato', sans-serif; | ||
font-weight: 400; | ||
font-style: normal | ||
} | ||
|
||
.greenBox{ | ||
width: 465px; | ||
height: 250px; | ||
margin-left: 30px; | ||
background-color: #17B270; | ||
border-radius: 25px; | ||
display: flex; | ||
} | ||
|
||
.textoVerde{ | ||
width: 233px; | ||
height: 151px; | ||
margin-top: 40px; | ||
margin-left: 26px; | ||
|
||
} | ||
|
||
.textoVerde > h2{ | ||
color: white; | ||
font-family: 'Poppins', sans-serif; | ||
font-weight: 600; | ||
font-style: normal; | ||
} | ||
|
||
.textoVerde > p{ | ||
color:white; | ||
font-family: 'Lato', sans-serif; | ||
font-weight: 400; | ||
font-style: normal | ||
} | ||
|
||
.fotoVerde{ | ||
border-bottom-right-radius: 25px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters