2025-01-22 06:55:49 +03:00

15 lines
511 B
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.

<template>
<div class="w-full border border-slate-100 p-4 rounded-xl flex items-center gap-4">
<img class="w-16" src="/sneakers/sneakers-1.jpg" alt="Sneaker">
<div class="flex flex-col justify-between">
<p>Мужские кроссовки Nike Blazer Mid Suede</p>
<div class="flex justify-between mt-2">
<b>12 990 руб.</b>
<img src="/close.svg" alt="Close" class="cursor-pointer transition opacity-40 hover:opacity-100">
</div>
</div>
</div>
</template>