remove the gradient box and added a picture instead

This commit is contained in:
2025-12-13 11:37:06 +03:30
parent 21998089fe
commit 69cb78ab92
2 changed files with 3 additions and 4 deletions

BIN
public/pic.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 96 KiB

View File

@@ -86,10 +86,8 @@
Not yet i {{ selecteddata }}
</p>
</div>
<div
class="w-60 rounded-xl grayscale-25 h-45 bg-linear-to-r from-amber-500 to-blue-500"
>
Nothing
<div class="w-60 h-45 object-fill">
<img :src="pic" class="rounded-xl" alt="" />
</div>
</div>
</div>
@@ -97,6 +95,7 @@
</div>
</template>
<script setup>
import pic from "/public/pic.jpg";
import { nextTick, ref } from "vue";
const selecteddata = ref("Product");
const hoverd = ref(false);