Skip to content

Commit

Permalink
adding topics and description
Browse files Browse the repository at this point in the history
  • Loading branch information
gabriela-miranda-leite committed Dec 22, 2021
1 parent 2d85d9c commit 3ab8f91
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 14 deletions.
14 changes: 1 addition & 13 deletions src/components/sections/footer/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,7 @@ export const Container = styled.div`
font-family: 'Ubuntu';
color: ${({theme}) => theme.colors.textDark};
img {
width: 3rem;
height: 3rem;
strong {
animation: ${animationSun} 4s linear infinite;
}
}
Expand All @@ -40,21 +38,11 @@ export const Container = styled.div`
p {
font-size: 2.4rem;
}
img {
width: 4rem;
height: 4rem;
}
}
@media (min-width: 1070px) {
p {
font-size: 3.2rem;
img {
width: 5rem;
height: 5rem;
}
}
}
`;
Expand Down
19 changes: 18 additions & 1 deletion src/components/sections/projects/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ import * as S from './styles';
interface DataProject {
name: string;
html_url: string;
topics: string[];
description: string;
}

export const Projects = () => {
Expand Down Expand Up @@ -70,7 +72,22 @@ export const Projects = () => {
</>
) : (
<>
<p>{dataGit[indexProject].name}</p>
<p>
<strong>{dataGit[indexProject].name}</strong>
<br />
<br />
{dataGit[indexProject].description}
<br />
<br />
<strong>
🧪 Tecnologias utilizadas
<br />
</strong>
<br />
{dataGit[indexProject].topics.map((e, index) => (
<p key={index}>{e}</p>
))}
</p>
<a href={dataGit[indexProject].html_url}>mais informações</a>
</>
)}
Expand Down

0 comments on commit 3ab8f91

Please sign in to comment.