feat: Add more skills
This commit is contained in:
parent
7ff356f4b6
commit
f9898669f9
@ -6,7 +6,7 @@ export default function About() {
|
||||
<MainContainer>
|
||||
<h1>About Me</h1>
|
||||
<Paragraph>
|
||||
<span>I'm Giv, a software engineering student, interning and studying in Minas Gerais, Brazil!</span>
|
||||
<span>I'm Giovani, a software engineering student, interning and studying in Minas Gerais, Brazil!</span>
|
||||
</Paragraph>
|
||||
</MainContainer>
|
||||
);
|
||||
|
@ -11,7 +11,7 @@ export default function Home() {
|
||||
|
||||
useEffect(() => {
|
||||
const typed = new Typed(typedElement.current, {
|
||||
strings: ["Hi, I'm Giv! Welcome to my website!"],
|
||||
strings: ["Hi, I'm Giovani! Welcome to my website!"],
|
||||
typeSpeed: 70,
|
||||
backSpeed: 50,
|
||||
loop: false,
|
||||
|
@ -1,14 +1,28 @@
|
||||
import { MainContainer } from "../../components/MainContent/styles";
|
||||
import { Paragraph } from "../../components/Paragraph/styles";
|
||||
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
|
||||
import { faAndroid } from '@fortawesome/free-brands-svg-icons'
|
||||
import { faAndroid, faAngular, faGit, faLinux, faNode, faReact, faWindows } from '@fortawesome/free-brands-svg-icons'
|
||||
import { SkillsContainer } from "./styles";
|
||||
|
||||
export default function Skills() {
|
||||
return (
|
||||
<MainContainer>
|
||||
<h1>Skills</h1>
|
||||
<Paragraph>Hey, check some of my skills:</Paragraph>
|
||||
<FontAwesomeIcon icon={faAndroid} />
|
||||
<SkillsContainer>
|
||||
<FontAwesomeIcon size="2x" style={{ color: '#fff' }} icon={faAndroid} />
|
||||
<p>Android</p>
|
||||
<FontAwesomeIcon size="2x" icon={faLinux} />
|
||||
<p>Linux</p>
|
||||
<FontAwesomeIcon size="2x" icon={faNode} />
|
||||
<p>Node</p>
|
||||
<FontAwesomeIcon size="2x" icon={faReact} />
|
||||
<p>React</p>
|
||||
<FontAwesomeIcon size="2x" icon={faAngular} />
|
||||
<p>Angular</p>
|
||||
<FontAwesomeIcon size="2x" icon={faWindows} />
|
||||
<p>Windows</p>
|
||||
<FontAwesomeIcon size="2x" icon={faGit} />
|
||||
<p>Git</p>
|
||||
</SkillsContainer>
|
||||
</MainContainer>
|
||||
)
|
||||
}
|
10
src/pages/skills/styles.ts
Normal file
10
src/pages/skills/styles.ts
Normal file
@ -0,0 +1,10 @@
|
||||
import styled from "styled-components";
|
||||
|
||||
export const SkillsContainer = styled.div`
|
||||
display: flex;
|
||||
margin-top: 1rem;
|
||||
p {
|
||||
margin-left: 0.3rem;
|
||||
margin-right: 2.5rem;
|
||||
}
|
||||
`
|
Loading…
x
Reference in New Issue
Block a user