mirror of
https://github.com/morten-olsen/morten-olsen.github.io.git
synced 2026-02-07 17:36:29 +01:00
50 lines
1015 B
TypeScript
50 lines
1015 B
TypeScript
import { Content } from './description.md';
|
|
import image from './profile.jpg';
|
|
|
|
import type { ResumeSchema } from '@/types/resume-schema.js';
|
|
|
|
const basics = {
|
|
name: 'Morten Olsen',
|
|
tagline: "Hi, I'm Morten and I make software 👋",
|
|
email: 'fbtijfdq@void.black',
|
|
url: 'https://mortenolsen.pro',
|
|
image: image.src,
|
|
location: {
|
|
city: 'Copenhagen',
|
|
countryCode: 'DK',
|
|
region: 'Capital Region of Denmark',
|
|
},
|
|
profiles: [
|
|
{
|
|
network: 'GitHub',
|
|
icon: 'mdi:github',
|
|
username: 'morten-olsen',
|
|
url: 'https://github.com/morten-olsen',
|
|
},
|
|
{
|
|
network: 'LinkedIn',
|
|
icon: 'mdi:linkedin',
|
|
username: 'mortenolsendk',
|
|
url: 'https://www.linkedin.com/in/mortenolsendk',
|
|
},
|
|
],
|
|
languages: [
|
|
{
|
|
name: 'English',
|
|
fluency: 'Conversational',
|
|
},
|
|
{
|
|
name: 'Danish',
|
|
fluency: 'Native speaker',
|
|
},
|
|
],
|
|
} satisfies ResumeSchema['basics'];
|
|
|
|
const profile = {
|
|
basics,
|
|
image,
|
|
Content,
|
|
};
|
|
|
|
export { profile };
|