54 lines
1.6 KiB
Vue
54 lines
1.6 KiB
Vue
<template>
|
|
<UContainer
|
|
class="flex flex-col md:gap-8 gap-5 p-4 sm:p-6 lg:p-8 max-w-3xl"
|
|
as="section"
|
|
>
|
|
<nuxt-img
|
|
placeholder
|
|
alt="Marios Antonoudiou"
|
|
src="mariosant.webp"
|
|
width="64"
|
|
height="64"
|
|
class="w-16 h-16 rounded-full border border-gray-200 dark:border-gray-800 dark:bg-slate-300"
|
|
/>
|
|
|
|
<p class="md:text-xl text-lg font-semibold">
|
|
<ULink
|
|
class="text-blue-500 dark:text-blue-300 hover:underline hover:underline-offset-4"
|
|
to="mailto:mariosant@sent.com"
|
|
>Marios Antonoudiou</ULink
|
|
>, independent software engineer.<br />
|
|
Building digital products that feel simple, even when they are not.
|
|
</p>
|
|
<p class="text-gray-800 dark:text-gray-200">
|
|
<span class="font-semibold">Software engineer</span> specializing at
|
|
<span class="font-semibold">Javascript & Typescript ecosystem</span>, with
|
|
a focus on digital products, enterprise apps and streaming data.
|
|
Well-versed in a wide range of technologies, especially on
|
|
<span class="font-semibold">frontends</span>.
|
|
</p>
|
|
|
|
<div class="flex gap-4 overflow-x-auto">
|
|
<UButton
|
|
color="primary"
|
|
variant="soft"
|
|
icon="mynaui:calendar"
|
|
target="_blank"
|
|
to="https://cal.com/mariosant/30min"
|
|
>
|
|
Arrange a call
|
|
</UButton>
|
|
|
|
<UButton
|
|
color="neutral"
|
|
icon="mynaui:envelope"
|
|
variant="soft"
|
|
target="_blank"
|
|
to="mailto:mariosant@sent.com"
|
|
>
|
|
Send a message
|
|
</UButton>
|
|
</div>
|
|
</UContainer>
|
|
</template>
|