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; text-align: left; @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 Like Building Things

Software Developer ✔️check

Designer 🛑 error: need more practise and feedback

Hard Working ⚠️ warning: not always the case

Life Long Learner ✔️check

); }; export default Hero;