This commit is contained in:
Marios Antonoudiou
2023-12-04 11:30:24 +02:00
commit 88f430b5f1
21 changed files with 12722 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
<template>
<UContainer class="flex flex-col gap-5">
<div class="text-sm text-gray-500">Been working with</div>
<Company logo="celonis-logo.webp" href="https://celonis.com">
<template v-slot:title>Celonis</template>
<template v-slot:description>
Process mining and execution management software
</template>
</Company>
<Company logo="chat-engineers-logo.webp" href="https://chatengineers.com">
<template v-slot:title>Chat Engineers</template>
<template v-slot:description>
Apps and customization for the Livechat platform
</template>
</Company>
<Company logo="lenses-logo.webp" href="https://lenses.io">
<template v-slot:title>Lenses</template>
<template v-slot:description>
Data-ops platform for Apache Kafka
</template>
</Company>
<Company logo="commversion-logo.webp" href="https://commversion.com">
<template v-slot:title>Commversion</template>
<template v-slot:description>
Conversational marketing platform
</template>
</Company>
<Company logo="up-logo.webp" href="https://uphellas.gr">
<template v-slot:title>Up Hellas</template>
<template v-slot:description>
Digital-first employee benefits that transform the workplace experience
</template>
</Company>
</UContainer>
</template>

37
components/company.vue Normal file
View File

@@ -0,0 +1,37 @@
<script setup lang="ts">
interface Props {
logo: string;
href?: string;
}
const props = defineProps<Props>();
</script>
<template>
<div class="flex gap-5">
<NuxtLink :to="props.href" target="_blank" class="block">
<NuxtImg
placeholder
:src="props.logo"
class="block rounded min-w-[50px]"
height="50"
width="50"
fit="outside"
/>
</NuxtLink>
<div class="flex flex-col justify-center">
<NuxtLink
:href="props.href"
target="_blank"
class="text-xl font-semibold hover:underline hover:underline-offset-4"
>
<slot name="title">Company</slot>
</NuxtLink>
<div class="text-sm text-gray-500">
<slot name="description">
Lorem ipsum, dolor sit amet consectetur adipisicing elit.
</slot>
</div>
</div>
</div>
</template>

51
components/connect.vue Normal file
View File

@@ -0,0 +1,51 @@
<template>
<UContainer class="flex flex-col gap-5">
<div class="text-sm text-gray-500">Let's connect</div>
<div class="flex gap-4 overflow-x-auto">
<UButton
color="purple"
icon="i-heroicons-arrow-right-circle"
class="rounded-full"
variant="soft"
target="_blank"
to="https://www.calendar.com/mariosant/short-video-call"
>
Calendar
</UButton>
<UButton
color="green"
icon="i-heroicons-arrow-right-circle"
class="rounded-full"
variant="soft"
target="_blank"
to="mailto:mariosant@sent.com"
>
Email
</UButton>
<UButton
color="orange"
icon="i-heroicons-arrow-right-circle"
class="rounded-full"
variant="soft"
target="_blank"
to="https://github.com/mariosant"
>
Github
</UButton>
<UButton
color="blue"
icon="i-heroicons-arrow-right-circle"
class="rounded-full"
variant="soft"
target="_blank"
to="https://www.linkedin.com/in/mariosant/"
>
Linkedin
</UButton>
</div>
</UContainer>
</template>

View File

@@ -0,0 +1,25 @@
<template>
<UContainer class="flex flex-col md:gap-12 gap-5">
<nuxt-img
placeholder
src="mariosant.webp"
width="64"
height="64"
class="w-16 h-16 rounded-full border"
/>
<div class="md:text-xl text-lg font-semibold">
<ULink
class="text-blue-500 hover:underline hover:underline-offset-4"
to="mailto:mariosant@sent.com"
>Marios Antonoudiou</ULink
>, an experienced software engineer.<br />
Enabling teams and crafting user interfaces at
<ULink
to="https://celonis.com"
target="_blank"
class="text-green-500 hover:underline hover:underline-offset-4"
>Celonis</ULink
>.
</div>
</UContainer>
</template>

7
components/section.vue Normal file
View File

@@ -0,0 +1,7 @@
<template>
<div class="w-screen">
<section class="p-14 mx-auto max-w-3xl">
<slot />
</section>
</div>
</template>