Skip to content

Commit

Permalink
- fix href
Browse files Browse the repository at this point in the history
  • Loading branch information
andrecrjr committed May 9, 2024
1 parent ef4afee commit 6562ecb
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 31 deletions.
1 change: 0 additions & 1 deletion app/page.tsx
Original file line number Diff line number Diff line change
@@ -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";
Expand Down
1 change: 1 addition & 0 deletions components/Contexts/ThemeProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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{
Expand Down
56 changes: 28 additions & 28 deletions components/Pages/AboutMe/Experience/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,28 +14,28 @@ const Experience = (props: Props) => {
particularly the <a href="">O Globo Newspaper website</a> one of the most famous news portal in Brazil.
</p>
<details>
<summary>More about this role</summary>
<ul>
<li className="experience__section--paragraph">
<p>Tech Stack Enhancement: Integrated Python and NodeJS microservices,
React with Redux-form, and Sass for
advanced CMS functionalities and front-end development.
</p>
</li>
<li className="experience__section--paragraph">
<p>CI/CD Expertise: Gained proficiency in CI/CD pipelines using GitLab CI and GitHub Actions, enhancing the development process. </p>
</li>
<li className="experience__section--paragraph">
<p>Agile Methodologies: Demonstrated flexibility in project management by adeptly employing both Scrum and Kanban frameworks.</p>
</li>
<li className="experience__section--paragraph">
<p>SEO Optimization: Leveraged Google Search Console to refine the CMS, boosting search engine visibility and indexing health by over 90%.</p>
</li>
<li className="experience__section--paragraph">
<p>Design Collaboration: Worked closely with UX/UI teams to faithfully execute design specifications using Zeplin, Adobe XD, and Figma.</p></li>
<li className="experience__section--paragraph">
<p>Design to Development: Consistently translated design concepts into functional user interfaces, ensuring fidelity to original layouts.</p></li>
</ul>
<summary>More about this role</summary>
<ul>
<li className="experience__section--paragraph">
<p>Tech Stack Enhancement: Integrated Python and NodeJS microservices,
React with Redux-form, and Sass for
advanced CMS functionalities and front-end development.
</p>
</li>
<li className="experience__section--paragraph">
<p>CI/CD Expertise: Gained proficiency in CI/CD pipelines using GitLab CI and GitHub Actions, enhancing the development process. </p>
</li>
<li className="experience__section--paragraph">
<p>Agile Methodologies: Demonstrated flexibility in project management by adeptly employing both Scrum and Kanban frameworks.</p>
</li>
<li className="experience__section--paragraph">
<p>SEO Optimization: Leveraged Google Search Console to refine the CMS, boosting search engine visibility and indexing health by over 90%.</p>
</li>
<li className="experience__section--paragraph">
<p>Design Collaboration: Worked closely with UX/UI teams to faithfully execute design specifications using Zeplin, Adobe XD, and Figma.</p></li>
<li className="experience__section--paragraph">
<p>Design to Development: Consistently translated design concepts into functional user interfaces, ensuring fidelity to original layouts.</p></li>
</ul>
</details>
</section>
<section className="experience__section">
Expand All @@ -44,12 +44,12 @@ const Experience = (props: Props) => {
<p style={{"marginBottom":"1rem"}}>Worked to maintain the legacy content management as a fullstack trainee</p>
<details>
<summary>More about this role</summary>
<ul>
<li className="experience__section--paragraph">
<p>Legacy System Revitalization: Enhanced legacy systems using Django and Python 2.7, acquiring expertise in established technologies.</p></li>
<li className="experience__section--paragraph"><p>Front-End Leadership: Led the creation of user interfaces with Less and Vanilla Javascript, merging practicality with aesthetic design.</p></li>
<li className="experience__section--paragraph"><p>Technological Adaptability: Overcame the intricacies of older tech stacks, mastering Django, Python 2.7, Less, and Vanilla Javascript.</p></li>
</ul>
<ul>
<li className="experience__section--paragraph">
<p>Legacy System Revitalization: Enhanced legacy systems using Django and Python 2.7, acquiring expertise in established technologies.</p></li>
<li className="experience__section--paragraph"><p>Front-End Leadership: Led the creation of user interfaces with Less and Vanilla Javascript, merging practicality with aesthetic design.</p></li>
<li className="experience__section--paragraph"><p>Technological Adaptability: Overcame the intricacies of older tech stacks, mastering Django, Python 2.7, Less, and Vanilla Javascript.</p></li>
</ul>
</details>
</section>
<a href="https://drive.google.com/file/d/1iKpeqeFRG4R8jH4kY-274pDIHk3AVHf8/view?usp=drive_link" className="experience__section--button">Download my complete resumé</a>
Expand Down
5 changes: 4 additions & 1 deletion components/Pages/AboutMe/Skill/Skill.style.tsx
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
export {}
"use client"
import styled from "styled-components"
import { ExperienceTitle } from "../Experience/Experience.style"
export const SkillsetTitle = styled(ExperienceTitle)
2 changes: 1 addition & 1 deletion components/Pages/AboutMe/Skill/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from "react";

const Skill = () => {
return <section data-aos="fade-up">
<h4>Skill</h4>
<h4>Skillset</h4>
<p>Work in Progress!</p>
</section>;
};
Expand Down

0 comments on commit 6562ecb

Please sign in to comment.