Files
hossein-por-shop/frontend/components/product/ProductComments.vue
T
marzban-dev 85e4296e60 Updated
2025-01-28 22:09:53 +03:30

29 lines
835 B
Vue

<script setup lang="ts">
</script>
<template>
<section class="bg-slate-50">
<div class="flex gap-12 my-42 container">
<div class="flex flex-col gap-6 min-w-fit">
<h3 class="typo-h-3">
نظرات کاربران
</h3>
<div class="flex flex-col gap-2">
<Rating />
<span class="typo-p-sm">
بر اساس ۴ نظر
</span>
</div>
<Button class="rounded-full">
نظر بنویسید
</Button>
</div>
<div class="flex flex-col gap-12">
<Comment />
<Comment />
<Comment />
</div>
</div>
</section>
</template>