diff --git a/gatsby-browser.js b/gatsby-browser.js index 45a7f66..73dce1a 100644 --- a/gatsby-browser.js +++ b/gatsby-browser.js @@ -1,9 +1,8 @@ import React from "react"; import Layout from "./src/components/Layout"; -import Cursor from "./src/components/Cursor"; export const wrapPageElement = ({ element, props }) => { const { path } = props; - return {element}; + return {element}; }; diff --git a/src/pages/about.js b/src/pages/about.js index 81cb555..6fe0e9e 100644 --- a/src/pages/about.js +++ b/src/pages/about.js @@ -4,6 +4,7 @@ import * as React from "react"; import Header from "../components/Header"; import Note from "../components/Note"; import Loader from "../components/Loader"; +import Cursor from "../components/Cursor"; import { FiCopy } from "@react-icons/all-files/fi/FiCopy"; import { FiDownload } from "@react-icons/all-files/fi/FiDownload"; @@ -45,92 +46,97 @@ const About = () => { }, []); return ( -
- -
-
-
- headshot - - -

download photo

-
-
-
-

bio

-

- 8+ years of experience as a Software Engineer, working on - large-scale and high-impact projects for digital companies, where I - created digital acquisition experiences, dashboards, awwwards-like - websites, design systems, mobile apps and email marketing tools. -

-

- I'm really focused about resolve real problems through technology, - specifically web development, creative development, and usability - engineering. -

-
    -
  • - +
  • +
  • + + +

    download cv

    +
    +
  • +
+
+ + - -
  • - - -

    download cv

    -
    -
  • - -
    - - +
    + {activePanel === 1 ? ( +
      + {careerPath.map(({ role, details, description }, index) => { + return ( +
    1. +

      {role}

      +
      +
      {details}
      +

      {description}

      +
    2. + ); + })} +
    + ) : ( +
      + {academyPath.map(({ role, details, description }, index) => { + return ( +
    1. +

      {role}

      +
      +
      {details}
      +
    2. + ); + })} +
    + )}
    - {activePanel === 1 ? ( -
      - {careerPath.map(({ role, details, description }, index) => { - return ( -
    1. -

      {role}

      -
      -
      {details}
      -

      {description}

      -
    2. - ); - })} -
    - ) : ( -
      - {academyPath.map(({ role, details, description }, index) => { - return ( -
    1. -

      {role}

      -
      -
      {details}
      -
    2. - ); - })} -
    - )} -
    -
    - -
    + + + + ); }; diff --git a/src/pages/actions.js b/src/pages/actions.js index 2bd51f6..c7e1620 100644 --- a/src/pages/actions.js +++ b/src/pages/actions.js @@ -5,6 +5,7 @@ import Header from "../components/Header"; import Container from "../components/Container"; import Note from "../components/Note"; import Loader from "../components/Loader"; +import Cursor from "../components/Cursor"; // Files import cesarolvrCV from "../files/cv-cesarolvr.pdf"; @@ -22,59 +23,66 @@ const Actions = () => { }, []); return ( -
    - -
    -
    - - - -
    - -
    + <> + + +
    + +
    +
    + + + +
    + +
    + ); }; diff --git a/src/pages/index.js b/src/pages/index.js index ba4c7cc..daab1ac 100644 --- a/src/pages/index.js +++ b/src/pages/index.js @@ -6,6 +6,7 @@ import Container from "../components/Container"; import Footer from "../components/Footer"; import Shortcut from "../components/Shortcut"; import Loader from "../components/Loader"; +import Cursor from "../components/Cursor"; // Styles import "../styles/global.scss"; @@ -21,26 +22,30 @@ const IndexPage = () => { }, []); return ( -
    - -
    -
    - -

    cesar oliveira

    -

    - tech lead at{" "} - - itaú - -

    -

    - and having fun creating cool digital experiences -

    - -
    -
    -
    -
    + <> + + +
    + +
    +
    + +

    cesar oliveira

    +

    + tech lead at{" "} + + itaú + +

    +

    + and having fun creating cool digital experiences +

    + +
    +
    +
    + ); };