feat: create skills section
This commit is contained in:
parent
9a2998b222
commit
7ff356f4b6
826
package-lock.json
generated
826
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -8,6 +8,7 @@ import Contact from './pages/contact';
|
||||
import Projects from './pages/projects';
|
||||
import { HashRouter } from 'react-router-dom';
|
||||
import '@fontsource-variable/red-hat-display';
|
||||
import Skills from './pages/skills';
|
||||
|
||||
function App() {
|
||||
return (
|
||||
@ -24,6 +25,9 @@ function App() {
|
||||
<section id="about">
|
||||
<About />
|
||||
</section>
|
||||
<section id="skills">
|
||||
<Skills />
|
||||
</section>
|
||||
<section id="contact">
|
||||
<Contact />
|
||||
</section>
|
||||
|
14
src/pages/skills/index.tsx
Normal file
14
src/pages/skills/index.tsx
Normal file
@ -0,0 +1,14 @@
|
||||
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'
|
||||
|
||||
export default function Skills() {
|
||||
return (
|
||||
<MainContainer>
|
||||
<h1>Skills</h1>
|
||||
<Paragraph>Hey, check some of my skills:</Paragraph>
|
||||
<FontAwesomeIcon icon={faAndroid} />
|
||||
</MainContainer>
|
||||
)
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user