18 lines
375 B
Vue
18 lines
375 B
Vue
<script setup lang="ts">
|
|
|
|
import Categories from "~/components/home/Categories.vue";
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<div class="w-full">
|
|
<Hero />
|
|
<Preview />
|
|
<Categories />
|
|
<ProductsSlider title="یک عنوان تستی" />
|
|
<Brands />
|
|
<ProductHero />
|
|
<MostRecentComments />
|
|
<LatestStories />
|
|
</div>
|
|
</template> |