27 lines
582 B
Vue
27 lines
582 B
Vue
<script setup lang="ts">
|
|
useSeoMeta({
|
|
title: "Marios Antonoudiou",
|
|
ogTitle: "Marios Antonoudiou",
|
|
description:
|
|
"An experienced software engineer. Enabling teams and crafting user interfaces at Celonis",
|
|
ogDescription:
|
|
"An experienced software engineer. Enabling teams and crafting user interfaces at Celonis",
|
|
twitterCard: "summary_large_image",
|
|
});
|
|
|
|
useHead({
|
|
htmlAttrs: {
|
|
lang: "en",
|
|
},
|
|
bodyAttrs: {
|
|
class: "dark:bg-slate-900",
|
|
},
|
|
});
|
|
</script>
|
|
<template>
|
|
<Introduction />
|
|
<BeenWorkingWith />
|
|
<PersonalProjects />
|
|
<Connect />
|
|
</template>
|