Commit everything

This commit is contained in:
marzban-dev
2024-12-12 21:52:15 +03:30
parent 985cb17f84
commit 0aa46aad1a
25 changed files with 146 additions and 53 deletions
+26
View File
@@ -0,0 +1,26 @@
<script setup lang="ts">
</script>
<template>
<div class="w-full h-screen p-8 flex gap-8 justify-start items-start">
<Product
brand="Samsung"
title="Galaxy S20 Ultra"
picture="/assets/img/product-1.jpg"
:colors="['#0000ff', '#00ff00','red']"
:price="599"
:rate="2.4"
tag="New"
/>
<Product
brand="Samsung"
title="Galaxy S20 Ultra"
picture="/assets/img/product-1.jpg"
:colors="['#0000ff', '#00ff00','red']"
:price="599"
:rate="2.4"
tag="New"
/>
</div>
</template>