20 lines
782 B
Vue
20 lines
782 B
Vue
<template>
|
|
<div class="grid grid-cols-3 gap-20">
|
|
<NuxtLink to="/reception">
|
|
<div class="w-[324px] h-[228px] border border-black rounded-md p-6 flex flex-col justify-between">
|
|
<div class="flex justify-between">
|
|
<div class="rounded-full w-[80px] h-[80px] bg-neutral-400 flex justify-center items-center">
|
|
<Icon name="mdi:truck-outline" style="color: black" size="44" />
|
|
</div>
|
|
<div>
|
|
<Icon name="mdi:plus" style="color: black" size="44" />
|
|
</div>
|
|
</div>
|
|
<div class="uppercase font-bold">
|
|
<p class="text-3xl">Nouvelle réception</p>
|
|
</div>
|
|
</div>
|
|
</NuxtLink>
|
|
</div>
|
|
</template>
|