Skip to content

Commit 5c58bfa

Browse files
committed
Update products.vue
1 parent 271cf03 commit 5c58bfa

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

pages/products.vue

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
<template>
2-
<ProductsShowAll />
2+
<div class="container mx-auto">
3+
<div class="flex flex-wrap">
4+
<div class="w-full md:w-1/4 p-4">
5+
<!-- Filter placeholder -->
6+
<h2 class="text-lg font-bold mb-4">Filters</h2>
7+
<p>Filter options will go here.</p>
8+
</div>
9+
<div class="w-full md:w-3/4 p-4">
10+
<ProductsShowAll />
11+
</div>
12+
</div>
13+
</div>
314
</template>
415

516
<script setup>

0 commit comments

Comments
 (0)