Skip to content

Commit

Permalink
feat - implementing typed in about
Browse files Browse the repository at this point in the history
  • Loading branch information
antoniorws committed Oct 15, 2023
1 parent f1e9fb8 commit f2f3a0d
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion src/pages/About.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import React from 'react';
import styled from "styled-components";
import Typed from "react-typed";
import aboutImg from '../assets/images/about.jpg';
import { inject } from '@vercel/analytics';

Expand All @@ -12,14 +13,27 @@ function About(){
</DivImageAbout>
<div>
<P>Very focused professional and very easy to work in a team.</P>
<P><strong>I always look for innovation</strong>. On my journey I was part of MV Sistemas.</P>
<P><Inovation><Typed
strings={[
"I always look for innovation.",
]}
typeSpeed={50}
/></Inovation> On my journey I was part of MV Sistemas.</P>
<P>Learning the business rules of the Hospital area (mainly the Supplies area).</P>
<P>I was also part of the technology area at Accenture focused on financial services, today I am part of China Systems.</P>
</div>
</MainAbout>
)
}

const Inovation = styled.div`
background-image: linear-gradient(135deg, var(--purple) 0%, var(--pink) 70%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-weight: bold;
`;

const MainAbout = styled.main`
margin: 0em 1em 5em 1em;
font-size: 1em;
Expand Down

0 comments on commit f2f3a0d

Please sign in to comment.