chore: layout

This commit is contained in:
Marios Antonoudiou
2024-05-10 15:31:03 +03:00
parent 88e6528ff2
commit ddab208650
2 changed files with 25 additions and 35 deletions

View File

@@ -4,45 +4,41 @@ import PreviousRole from '../previous-role.vue';
<div class="text-sm text-gray-500">Been working with</div> <div class="text-sm text-gray-500">Been working with</div>
<PreviousRole <PreviousRole
company="Celonis" company="Celonis"
role="Senior frontend engineer"
logo="celonis-logo.webp" logo="celonis-logo.webp"
href="https://celonis.com" href="https://celonis.com"
> >
<ul class="list-disc list-inside"> <div>
<li>EMS 2.0 OCPM frontend: Pioneering the future of process mining.</li> OCPM frontend. Pioneering the future of process mining. Developed
<li> internal shared component libraries and build pipelines. Facilitated
Developed internal shared component libraries and build pipelines. cross-departmental collaboration with Backstage implementation.
</li> </div>
<li>
Facilitated cross-departmental collaboration with Backstage
implementation.
</li>
</ul>
</PreviousRole> </PreviousRole>
<PreviousRole <PreviousRole
company="Lenses.io" company="Lenses.io"
role="Senior frontend engineer"
logo="lenses-logo.webp" logo="lenses-logo.webp"
href="https://lenses.io" href="https://lenses.io"
> >
<ul class="list-disc list-inside"> <ul class="list-disc list-inside">
<li>Engineered the frontend for SQL Processors and Data Catalog.</li> <li class="inline">
<li>Architected the shared components library.</li> Engineered the frontend for SQL Processors and Data Catalog.
<li>Worked on the Lenses.io CLI tool.</li> </li>
<li class="inline">Architected the shared components library.</li>
<li class="inline">Worked on the Lenses.io CLI tool.</li>
</ul> </ul>
</PreviousRole> </PreviousRole>
<PreviousRole <PreviousRole
company="The Chat Shop" company="The Chat Shop"
role="Lead Engineer"
logo="thechatshop-logo.jpg" logo="thechatshop-logo.jpg"
href="https://thechatshop.com" href="https://thechatshop.com"
> >
<ul class="list-disc list-inside"> <ul class="list-disc list-inside">
<li>Spearheaded end-to-end processing architecture.</li> <li class="inline">Spearheaded end-to-end processing architecture.</li>
<li>Established the companys streaming data infrastructure.</li> <li class="inline">
<li> Established the companys streaming data infrastructure.
</li>
<li class="inline">
Worked on devops to achieve continuous integration and deployment. Worked on devops to achieve continuous integration and deployment.
</li> </li>
</ul> </ul>
@@ -50,28 +46,30 @@ import PreviousRole from '../previous-role.vue';
<PreviousRole <PreviousRole
company="Commversion" company="Commversion"
role="Contractor Software Engineer"
logo="commversion-logo.webp" logo="commversion-logo.webp"
href="https://commversion.com" href="https://commversion.com"
> >
<ul class="list-disc list-inside"> <ul class="list-disc list-inside">
<li> <li class="inline">
Developed the frontend delivery platform with public-facing Developed the frontend delivery platform with public-facing
infrastructure. infrastructure.
</li> </li>
<li>Designed and implemented the initial InstantConnect system.</li> <li class="inline">
Designed and implemented the initial InstantConnect system.
</li>
</ul> </ul>
</PreviousRole> </PreviousRole>
<PreviousRole <PreviousRole
company="Up Hellas" company="Up Hellas"
role="Contractor Frontend Engineer"
logo="up-logo.webp" logo="up-logo.webp"
href="https://uphellas.gr" href="https://uphellas.gr"
> >
<ul class="list-disc list-inside"> <ul class="list-disc list-inside">
<li>Implemented client's area dashboards.</li> <li class="inline">Implemented client's area dashboards.</li>
<li>Designed and implemented internal sales dashrboard.</li> <li class="inline">
Designed and implemented internal sales dashrboard.
</li>
</ul> </ul>
</PreviousRole> </PreviousRole>
</UContainer> </UContainer>

View File

@@ -3,7 +3,6 @@ interface Props {
logo: string; logo: string;
href?: string; href?: string;
company: string; company: string;
role: string;
} }
const props = defineProps<Props>(); const props = defineProps<Props>();
@@ -23,7 +22,7 @@ const props = defineProps<Props>();
fit="outside" fit="outside"
/> />
</NuxtLink> </NuxtLink>
<div class="flex flex-col justify-center"> <div class="flex flex-col justify-center gap-1">
<NuxtLink <NuxtLink
:href="props.href" :href="props.href"
target="_blank" target="_blank"
@@ -31,14 +30,7 @@ const props = defineProps<Props>();
> >
{{ props.company }} {{ props.company }}
</NuxtLink> </NuxtLink>
<div> <div class="text-sm text-gray-500 lg:max-w-lg">
<button
class="mb-2 text-xs text-gray-400 uppercase font-semibold flex items-center justify-start gap-1"
>
{{ props.role }}
</button>
</div>
<div class="text-sm text-gray-500">
<slot /> <slot />
</div> </div>
</div> </div>