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,5 @@
As a software engineer with a diverse skill set in frontend, backend, and DevOps, I find my greatest satisfaction in unraveling complex challenges and transforming them into achievable solutions. My career has predominantly been in frontend development, but my keen interest and adaptability have frequently drawn me into backend and DevOps roles. I am driven not by titles or hierarchy but by opportunities where I can make a real difference through my work.
In every role, I strive to blend my technical skills with a collaborative spirit, focusing on contributing to team goals and delivering practical, effective solutions. My passion for development extends beyond professional settings; I continually engage in personal projects to explore new technologies and methodologies, keeping my skills sharp and current.
I am eager to find a role that aligns with my dedication to development and problem-solving, a place where I can apply my varied expertise to meaningful projects and grow within a team that values innovation and technical skill.

BIN
content/profile/profile.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 142 KiB

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 };