import { FC } from 'react'; import styled from 'styled-components'; import Typing from 'react-typing-animation'; const Wrapper = styled.div` min-height: 45vh; display: grid; align-items: center; height: auto; @media (max-width: 768px) { min-height: 65vh; } h2 { font-size: 1.5rem; } .small { font-size: 1rem; font-weight: normal; } .green { color: #73d26b; } .orange { color: #d6a356; } .red { color: #d75050; } `; const Hero: FC = () => { return (

Hi.

I Can Build Stuff.

Full Stack Developer ✔️check

Passionate ✔️check

Hard Working ⚠️warning: not always the case

Designer 🛑error: need more practise and feedback

); }; export default Hero;