mirror of
https://github.com/ArthurDanjou/website.git
synced 2026-01-14 12:14:42 +01:00
58 lines
1.5 KiB
Vue
58 lines
1.5 KiB
Vue
<script setup lang="ts">
|
|
import type {WorkExperience} from '~~/types'
|
|
|
|
defineProps({
|
|
experience: Object as PropType<WorkExperience>,
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
v-if="experience"
|
|
class="group relative flex flex-col items-start"
|
|
>
|
|
<div>
|
|
<div class="flex flex-col">
|
|
<div>
|
|
<DateTag
|
|
:end-date="experience.endDate"
|
|
:start-date="experience.startDate"
|
|
/>
|
|
</div>
|
|
<div class="flex items-center my-1">
|
|
<UButton
|
|
v-if="experience.companyLink"
|
|
:to="experience.companyLink"
|
|
variant="link"
|
|
:padded="false"
|
|
color="white"
|
|
size="xl"
|
|
target="_blank"
|
|
:label="experience.company"
|
|
class="mr-3 text-base font-semibold tracking-tight text-zinc-800 dark:text-zinc-100"
|
|
>
|
|
<template #leading>
|
|
<UIcon
|
|
color="gray"
|
|
name="i-akar-icons-link-chain"
|
|
/>
|
|
</template>
|
|
</UButton>
|
|
<h1
|
|
v-else
|
|
class="mr-3 my-1 text-base font-semibold tracking-tight text-zinc-800 dark:text-zinc-100"
|
|
>
|
|
{{ experience.company }}
|
|
</h1>
|
|
<div class="text-subtitle text-xs">
|
|
{{ experience.location }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<p class="text-justify leading-5 text-sm text-zinc-600 dark:text-zinc-400">
|
|
{{ experience.title }} — {{ experience.description }}
|
|
</p>
|
|
</div>
|
|
</template>
|