diff --git a/app/page.tsx b/app/page.tsx index 989b818..edc406a 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -1,6 +1,5 @@ import Header from "@/components/Layout/Header"; import { AboutMe } from "@/components/Pages/AboutMe"; -import { AboutMeContainer } from "@/components/Pages/AboutMe/About.style"; import MainPage from "@/components/Pages/MainPage"; import { Portfolio } from "@/components/Pages/Portfolio"; import { GlobalContainer } from "@/styles/global"; diff --git a/components/Contexts/ThemeProvider.tsx b/components/Contexts/ThemeProvider.tsx index b48c1cb..11a79bc 100644 --- a/components/Contexts/ThemeProvider.tsx +++ b/components/Contexts/ThemeProvider.tsx @@ -20,6 +20,7 @@ a{ &:hover{ transition:transform 200ms linear; } + color: ${(props) => props.theme.colors.primary}; opacity: 0.7; transition: opacity 300ms ease-out; &:hover{ diff --git a/components/Pages/AboutMe/Experience/index.tsx b/components/Pages/AboutMe/Experience/index.tsx index e2e78cf..5828864 100644 --- a/components/Pages/AboutMe/Experience/index.tsx +++ b/components/Pages/AboutMe/Experience/index.tsx @@ -14,28 +14,28 @@ const Experience = (props: Props) => { particularly the O Globo Newspaper website one of the most famous news portal in Brazil.

- More about this role - + More about this role +
@@ -44,12 +44,12 @@ const Experience = (props: Props) => {

Worked to maintain the legacy content management as a fullstack trainee

More about this role - +
Download my complete resumé diff --git a/components/Pages/AboutMe/Skill/Skill.style.tsx b/components/Pages/AboutMe/Skill/Skill.style.tsx index 693da49..ea195d5 100644 --- a/components/Pages/AboutMe/Skill/Skill.style.tsx +++ b/components/Pages/AboutMe/Skill/Skill.style.tsx @@ -1 +1,4 @@ -export {} \ No newline at end of file +"use client" +import styled from "styled-components" +import { ExperienceTitle } from "../Experience/Experience.style" +export const SkillsetTitle = styled(ExperienceTitle) \ No newline at end of file diff --git a/components/Pages/AboutMe/Skill/index.tsx b/components/Pages/AboutMe/Skill/index.tsx index 291ee03..3133d4b 100644 --- a/components/Pages/AboutMe/Skill/index.tsx +++ b/components/Pages/AboutMe/Skill/index.tsx @@ -2,7 +2,7 @@ import React from "react"; const Skill = () => { return
-

Skill

+

Skillset

Work in Progress!

; };