import React from 'react'; import { createGlobalStyle } from 'styled-components'; import Head from 'next/head'; import Background from '../components/Background'; import Me from '../components/Me'; import Social from '../components/Social'; import htbLogo from '../public/images/logos/htb.svg'; import githubLogo from '../public/images/logos/github.svg'; import linkedinLogo from '../public/images/logos/linkedin.svg'; import stackOverflowLogo from '../public/images/logos/stackoverflow.svg'; const Globals = createGlobalStyle` body { background: #03544e; } @keyframes fadein { from {opacity: 0} to {opacity: 1} } `; const Frontpage: React.FC<{}> = () => { return ( <>