import { FC, useContext } from 'react'; import { ThemeContext } from '../../styles/theme'; import { Wrapper } from './styles'; import Image from 'next/image'; const Hero: FC = () => { const { mode } = useContext(ThemeContext); return (

Hi, I am Hazem

I Like Building Things

Software Developer

Life Long Learner

); }; export default Hero;