29 lines
840 B
Vue
29 lines
840 B
Vue
<script setup lang="ts">
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<section class="bg-slate-50 p-20">
|
|
<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> |