Files
mariosant.dev/components/home/been-working-with.vue
Marios Antonoudiou ddab208650 chore: layout
2024-05-10 15:31:03 +03:00

77 lines
2.3 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import PreviousRole from '../previous-role.vue';
<template>
<UContainer class="flex flex-col gap-5" as="section">
<div class="text-sm text-gray-500">Been working with</div>
<PreviousRole
company="Celonis"
logo="celonis-logo.webp"
href="https://celonis.com"
>
<div>
OCPM frontend. Pioneering the future of process mining. Developed
internal shared component libraries and build pipelines. Facilitated
cross-departmental collaboration with Backstage implementation.
</div>
</PreviousRole>
<PreviousRole
company="Lenses.io"
logo="lenses-logo.webp"
href="https://lenses.io"
>
<ul class="list-disc list-inside">
<li class="inline">
Engineered the frontend for SQL Processors and Data Catalog.
</li>
<li class="inline">Architected the shared components library.</li>
<li class="inline">Worked on the Lenses.io CLI tool.</li>
</ul>
</PreviousRole>
<PreviousRole
company="The Chat Shop"
logo="thechatshop-logo.jpg"
href="https://thechatshop.com"
>
<ul class="list-disc list-inside">
<li class="inline">Spearheaded end-to-end processing architecture.</li>
<li class="inline">
Established the companys streaming data infrastructure.
</li>
<li class="inline">
Worked on devops to achieve continuous integration and deployment.
</li>
</ul>
</PreviousRole>
<PreviousRole
company="Commversion"
logo="commversion-logo.webp"
href="https://commversion.com"
>
<ul class="list-disc list-inside">
<li class="inline">
Developed the frontend delivery platform with public-facing
infrastructure.
</li>
<li class="inline">
Designed and implemented the initial InstantConnect system.
</li>
</ul>
</PreviousRole>
<PreviousRole
company="Up Hellas"
logo="up-logo.webp"
href="https://uphellas.gr"
>
<ul class="list-disc list-inside">
<li class="inline">Implemented client's area dashboards.</li>
<li class="inline">
Designed and implemented internal sales dashrboard.
</li>
</ul>
</PreviousRole>
</UContainer>
</template>