Clients
This commit is contained in:
26
components/clients/client.vue
Normal file
26
components/clients/client.vue
Normal file
@@ -0,0 +1,26 @@
|
||||
<script setup lang="ts">
|
||||
defineProps<{
|
||||
name: string
|
||||
logo: string
|
||||
fullName: string
|
||||
}>()
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="flex flex-col rounded-xl py-8 px-4 gap-4 w-72 items-center border">
|
||||
<img
|
||||
:src="logo"
|
||||
class="w-48 h-48 object-contain mb-4"
|
||||
>
|
||||
<div>
|
||||
{{name}}
|
||||
</div>
|
||||
<div class="text-xs text-slate-400 text-center">
|
||||
{{fullName}}
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style scoped lang="postcss">
|
||||
|
||||
</style>
|
||||
Reference in New Issue
Block a user