Skip to content

Commit 2c0a926

Browse files
Edited site webmanifest
1 parent 99cd14a commit 2c0a926

File tree

5 files changed

+22
-10
lines changed

5 files changed

+22
-10
lines changed

apple-icon-1662x2048-d80o29ez.png

35.8 KB
Loading

public/about.txt

-6
This file was deleted.

public/favicon.png

35.8 KB
Loading

public/site.webmanifest

+14-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,14 @@
1-
{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}
1+
{
2+
"name": "QPICK Apple accessories store",
3+
"short_name": "QPICK",
4+
"icons": [
5+
{
6+
"src": "/favicon.png",
7+
"sizes": "192x192",
8+
"type": "image/png"
9+
}
10+
],
11+
"theme_color": "#ffffff",
12+
"background_color": "#ffffff",
13+
"display": "standalone"
14+
}

src/components/ProductItem.jsx

+8-3
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,14 @@ function ProductItem({
3737
</div>
3838
)}
3939
</div>
40-
<div className="flex flex-row gap-3 mt-6 ">
41-
<img src="/img/icons/star.svg" alt="" />
42-
<p className="text-[#1C1C27] text-[17px] font-semibold ">{rating}</p>
40+
<div className="flex justify-between flex-row items-end">
41+
<div className="flex flex-row gap-3 mt-6 ">
42+
<img src="/img/icons/star.svg" alt="" />
43+
<p className="text-[#1C1C27] text-[17px] font-semibold ">{rating}</p>
44+
</div>
45+
<button className="bg-black text-white rounded-md px-2 py-1">
46+
Add to cart
47+
</button>
4348
</div>
4449
</div>
4550
);

0 commit comments

Comments
 (0)