-
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.
Mudanças no Site Institucional (#18)
* #Hotfix add the logos in the main page and change the name in navbar * feat: Create social media tab * chore: add git commit linter * feat: create midia tab * feat: add 'saiba mais' and 'midia' pages * fix: complete requested changes on pr * fix: fix 'saiba-mais' carousel logos Co-authored-by: Sabanai104 <[email protected]>
- Loading branch information
1 parent
c1cf991
commit 4e66c40
Showing
54 changed files
with
4,117 additions
and
3,216 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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.
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.
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.
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.
Binary file not shown.
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.
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.
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.
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.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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,18 @@ | ||
import React from 'react'; | ||
import { Container } from './styles'; | ||
|
||
export default function InfoCard({ title, color, text }) { | ||
|
||
return( | ||
<Container> | ||
<div className={`card-${color}`}> | ||
<h3> | ||
{title} | ||
</h3> | ||
<p> | ||
{text} | ||
</p> | ||
</div> | ||
</Container> | ||
); | ||
} |
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,32 @@ | ||
import styled from "styled-components"; | ||
|
||
export const Container = styled.section` | ||
div { | ||
height: 23rem; | ||
padding: 2.5rem; | ||
margin: 1rem; | ||
background-color: #EDEDED; | ||
text-align: justify; | ||
border-radius: 0.6rem; | ||
} | ||
.card-white { | ||
h3 { | ||
font-size: 1.6rem; | ||
} | ||
p { | ||
font-size: 1.3rem; | ||
} | ||
} | ||
.card-blue { | ||
background-color: #4B8AB9; | ||
h3 { | ||
font-size: 1.6rem; | ||
color: #f7f7f7; | ||
} | ||
p { | ||
color: #f7f7f7; | ||
font-size: 1.3rem; | ||
} | ||
} | ||
`; |
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,25 @@ | ||
import React from 'react'; | ||
|
||
import { Container } from './styles'; | ||
|
||
export default function LogoCard({ name, link, logo }) { | ||
return ( | ||
<Container > | ||
<div className='image-container'> | ||
<img | ||
src={logo} | ||
alt='logo' | ||
style={{ width: '13rem'}} | ||
/> | ||
</div> | ||
<div className='link-container'> | ||
<a | ||
href={link} | ||
target='blank' | ||
> | ||
{name} | ||
</a> | ||
</div> | ||
</Container> | ||
); | ||
} |
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,52 @@ | ||
import styled from 'styled-components'; | ||
import { darken } from 'polished'; | ||
|
||
|
||
export const Container = styled.div` | ||
height: 22rem; | ||
width: 100%; | ||
padding: 2.5rem; | ||
margin: 1rem; | ||
background-color: ${darken(0.3, '#4B8AB9')}; | ||
border-radius: 0.6rem; | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: space-space-around; | ||
align-items: center; | ||
&:hover, | ||
&:active { | ||
transition: all 0.5s; | ||
background: ${darken(0.1, '#4B8AB9')}; | ||
} | ||
.image-container { | ||
width: 100%; | ||
height: 60%; | ||
padding: 0.8rem; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
img { | ||
padding: 1rem; | ||
width: 100%; | ||
} | ||
} | ||
.link-container { | ||
display: flex; | ||
height: 40%; | ||
align-items: center; | ||
justify-content: center; | ||
a { | ||
color: #F7F7F7; | ||
font-weight: bold; | ||
cursor: pointer; | ||
font-size: 1.4rem; | ||
text-decoration: none; | ||
text-align: center; | ||
} | ||
} | ||
`; |
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
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
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,43 @@ | ||
import React from 'react'; | ||
|
||
import { Container } from './styles'; | ||
|
||
export default function NewsContainer({ | ||
title, | ||
data, | ||
link, | ||
logo | ||
}) { | ||
return ( | ||
<Container> | ||
<section> | ||
<h3> | ||
{title} | ||
</h3> | ||
<section className='news-info'> | ||
<div id='dataInformation' > | ||
{ | ||
data.map((item) => { | ||
return ( | ||
<p> | ||
{item} | ||
</p> | ||
)} | ||
) | ||
} | ||
<a className='news-link' href={link} target='blank'> | ||
Acesse aqui | ||
</a> | ||
</div> | ||
<div id='newsLogo'> | ||
<img | ||
src={logo} | ||
style={{ width: '15rem' }} | ||
alt='newsImage' | ||
/> | ||
</div> | ||
</section> | ||
</section> | ||
</Container> | ||
); | ||
} |
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,59 @@ | ||
import styled from 'styled-components'; | ||
|
||
export const Container = styled.section` | ||
width: 100%; | ||
height: 40vh; | ||
padding: 3rem 3rem 4rem 2rem; | ||
margin: 2rem 0 2rem 0; | ||
section { | ||
display: flex; | ||
flex-direction: column; | ||
padding: 1rem; | ||
width: 100%; | ||
height: 100%; | ||
h3 { | ||
padding: 0 0 1.2em 0; | ||
} | ||
.news-info { | ||
display: flex; | ||
flex-direction: row; | ||
justify-content: space-between; | ||
#dataInformation { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
justify-content: space-around; | ||
margin: 4.5rem 0 2rem 0; | ||
width: 50%; | ||
max-height: 8rem; | ||
p { | ||
font-size: 1.2rem; | ||
padding: 0.5rem; | ||
} | ||
.news-link { | ||
padding: 1em 0em; | ||
font-size: 1.2em; | ||
color: #4b8ab9; | ||
font-weight: bold | ||
} | ||
} | ||
#newsLogo { | ||
width: 50%; | ||
display: flex; | ||
justify-content: space-around; | ||
align-self: center; | ||
img { | ||
width: 50%; | ||
} | ||
} | ||
} | ||
} | ||
`; |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.