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

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