forked from LearnAzion/EdgeRev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProducts.astro
More file actions
98 lines (97 loc) · 3.25 KB
/
Copy pathProducts.astro
File metadata and controls
98 lines (97 loc) · 3.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<main >
<div class="relative mx-auto px-8 max-w-7xl py-12 md:px-12">
<div
class="grid grid-cols-1 gap-6 lg:gap-y-32 md:grid-cols-2 ">
<figure>
<img
class="w-full rounded-3xl shadow-2xl"
src="https://api.azion.com/v4/storage/buckets/EdgeRev/objects/t-shirt-1-img1-site.png?compress=1&resize=1600x1200&vertical=top"
alt=""
width="1310"
height="873"
/>
<div class="mt-4 flex justify-between px-6">
<div>
<h3 class="text-sm text-negroni-500">
<a href="#">
<span aria-hidden="true" class="absolute inset-0"></span>
Paper bags with print
</a>
</h3>
<p class="mt-1 text-lg font-medium leading-6 text-white">Beige</p>
</div>
<p class="text-base text-tomato-500">$3</p>
</div>
</figure>
<figure>
<img
class="w-full rounded-3xl shadow-2xl"
src="https://api.azion.com/v4/storage/buckets/EdgeRev/objects/t-shirt-2-img1-site.png?compress=1&resize=1600x1200&vertical=top"
alt=""
width="1310"
height="873"
/>
<div class="mt-4 flex justify-between px-6">
<div>
<h3 class="text-sm text-negroni-500">
<a href="#">
<span aria-hidden="true" class="absolute inset-0"></span>
Basic Tee bag
</a>
</h3>
<p class="mt-1 text-lg font-medium leading-6 text-white">
Olive green / Orange
</p>
</div>
<p class="text-base text-tomato-500">$35</p>
</div>
</figure>
<figure>
<img
class="w-full rounded-3xl shadow-2xl"
src="https://api.azion.com/v4/storage/buckets/EdgeRev/objects/t-shirt-3-img1-site.png?compress=1&resize=1600x1200&vertical=top"
alt=""
width="1310"
height="873"
/>
<div class="mt-4 flex justify-between px-6">
<div>
<h3 class="text-sm text-negroni-500">
<a href="#">
<span aria-hidden="true" class="absolute inset-0"></span>
Coffe bag
</a>
</h3>
<p class="mt-1 text-lg font-medium leading-6 text-white">
Strong. Level: Developer
</p>
</div>
<p class="text-base text-tomato-500">$35</p>
</div>
</figure>
<figure>
<img
class="w-full rounded-3xl shadow-2xl"
src="https://api.azion.com/v4/storage/buckets/EdgeRev/objects/t-shirt-4-img1-site.png?compress=1&resize=1504x1128"
alt=""
width="1310"
height="873"
/>
<div class="mt-4 flex justify-between px-6">
<div>
<h3 class="text-sm text-negroni-500">
<a href="#">
<span aria-hidden="true" class="absolute inset-0"></span>
Coffe bag
</a>
</h3>
<p class="mt-1 text-lg font-medium leading-6 text-white">
Strong. Level: Designer
</p>
</div>
<p class="text-base text-tomato-500">$35</p>
</div>
</figure>
</div>
</div>
</main>