This commit is contained in:
Morten Olsen
2021-08-25 22:48:59 +02:00
commit 175bdd17e7
15 changed files with 2469 additions and 0 deletions

30
pages/index.tsx Normal file
View File

@@ -0,0 +1,30 @@
import React from 'react';
import Me from '../components/Me';
import Social from '../components/Social';
const Frontpage: React.FC<{}> = () => (
<>
<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;