Files
morten-olsen.github.io/pages/index.tsx
2021-08-25 23:34:06 +02:00

35 lines
831 B
TypeScript

import React from 'react';
import Head from 'next/head';
import Me from '../components/Me';
import Social from '../components/Social';
const Frontpage: React.FC<{}> = () => (
<>
<Head>
<title>Morten Olsen</title>
</Head>
<Me />
<Social
sites={[{
title: 'Github',
link: 'https://github.com/morten-olsen',
logo: 'github.svg',
}, {
title: 'HackTheBox',
link: 'https://app.hackthebox.eu/profile/174098',
logo: 'htb.svg',
}, {
title: 'Stack Overflow',
link: 'https://stackoverflow.com/users/1689055/morten-olsen',
logo: 'stackoverflow.svg',
}, {
title: 'Linkedin',
link: 'https://www.linkedin.com/in/mortenolsendk',
logo: 'linkedin.svg',
}]}
/>
</>
);
export default Frontpage;