import React from 'react'; import Head from 'next/head'; import Background from '../components/Background'; import Me from '../components/Me'; import Social from '../components/Social'; const Frontpage: React.FC<{}> = () => { return ( <> Morten Olsen ); }; export default Frontpage;