Merge version_1 into main #1

Merged
bender merged 4 commits from version_1 into main 2026-03-08 00:19:33 +00:00
4 changed files with 1377 additions and 10 deletions

View File

@@ -24,7 +24,7 @@ export default function CartPage() {
price: 350000,
quantity: 1,
variant: "Red Roses • 12 Stems",
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-beautifully-bloomed-colorful-rose-flowers_23-2149005528.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-beautifully-bloomed-colorful-rose-flowers_23-2149005528.jpg?_wi=3",
},
{
id: "2",
@@ -32,7 +32,7 @@ export default function CartPage() {
price: 275000,
quantity: 2,
variant: "Mixed Colors • 15 Stems",
imageSrc: "http://img.b2bpic.net/free-photo/set-easter-quail-eggs-near-flowers-vase_23-2148074698.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/set-easter-quail-eggs-near-flowers-vase_23-2148074698.jpg?_wi=3",
},
];

File diff suppressed because it is too large Load Diff

View File

@@ -71,7 +71,7 @@ export default function HomePage() {
name: "Romantic Rose Bouquet",
price: "Rp 350.000",
variant: "Red Roses • 12 Stems",
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-beautifully-bloomed-colorful-rose-flowers_23-2149005528.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-beautifully-bloomed-colorful-rose-flowers_23-2149005528.jpg?_wi=1",
imageAlt: "Beautiful red rose bouquet",
isFavorited: false,
},
@@ -80,7 +80,7 @@ export default function HomePage() {
name: "Spring Tulip Mix",
price: "Rp 275.000",
variant: "Mixed Colors • 15 Stems",
imageSrc: "http://img.b2bpic.net/free-photo/set-easter-quail-eggs-near-flowers-vase_23-2148074698.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/set-easter-quail-eggs-near-flowers-vase_23-2148074698.jpg?_wi=1",
imageAlt: "Colorful tulip arrangement",
isFavorited: false,
},
@@ -89,7 +89,7 @@ export default function HomePage() {
name: "Sunflower Dreams",
price: "Rp 225.000",
variant: "Golden Yellow • 10 Stems",
imageSrc: "http://img.b2bpic.net/free-photo/gardening-composition-with-hat-sunflowers_23-2147673283.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/gardening-composition-with-hat-sunflowers_23-2147673283.jpg?_wi=1",
imageAlt: "Bright sunflower bouquet",
isFavorited: false,
},
@@ -98,7 +98,7 @@ export default function HomePage() {
name: "Orchid Elegance",
price: "Rp 425.000",
variant: "White & Purple • 8 Stems",
imageSrc: "http://img.b2bpic.net/free-photo/woman-decorating-her-home-with-orchids_23-2150960675.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/woman-decorating-her-home-with-orchids_23-2150960675.jpg?_wi=1",
imageAlt: "Premium orchid arrangement",
isFavorited: false,
},

View File

@@ -48,7 +48,7 @@ export default function ShopPage() {
name: "Romantic Rose Bouquet",
price: "Rp 350.000",
variant: "Red Roses • 12 Stems",
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-beautifully-bloomed-colorful-rose-flowers_23-2149005528.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-beautifully-bloomed-colorful-rose-flowers_23-2149005528.jpg?_wi=2",
imageAlt: "Beautiful red rose bouquet",
isFavorited: false,
},
@@ -57,7 +57,7 @@ export default function ShopPage() {
name: "Spring Tulip Mix",
price: "Rp 275.000",
variant: "Mixed Colors • 15 Stems",
imageSrc: "http://img.b2bpic.net/free-photo/set-easter-quail-eggs-near-flowers-vase_23-2148074698.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/set-easter-quail-eggs-near-flowers-vase_23-2148074698.jpg?_wi=2",
imageAlt: "Colorful tulip arrangement",
isFavorited: false,
},
@@ -66,7 +66,7 @@ export default function ShopPage() {
name: "Sunflower Dreams",
price: "Rp 225.000",
variant: "Golden Yellow • 10 Stems",
imageSrc: "http://img.b2bpic.net/free-photo/gardening-composition-with-hat-sunflowers_23-2147673283.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/gardening-composition-with-hat-sunflowers_23-2147673283.jpg?_wi=2",
imageAlt: "Bright sunflower bouquet",
isFavorited: false,
},
@@ -75,7 +75,7 @@ export default function ShopPage() {
name: "Orchid Elegance",
price: "Rp 425.000",
variant: "White & Purple • 8 Stems",
imageSrc: "http://img.b2bpic.net/free-photo/woman-decorating-her-home-with-orchids_23-2150960675.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/woman-decorating-her-home-with-orchids_23-2150960675.jpg?_wi=2",
imageAlt: "Premium orchid arrangement",
isFavorited: false,
},