fix: updates

This commit is contained in:
Morten Olsen
2025-09-23 22:59:43 +02:00
parent 4acf4093ec
commit 10886b40f5
66 changed files with 5126 additions and 5702 deletions

View File

@@ -0,0 +1,49 @@
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 };