3 Commits

Author SHA1 Message Date
1831d2a29d Update src/app/page.tsx 2026-05-20 19:07:57 +00:00
e866b70be5 Merge version_2 into main
Merge version_2 into main
2026-05-20 19:04:24 +00:00
7dab31088b Merge version_2 into main
Merge version_2 into main
2026-05-20 19:03:39 +00:00

View File

@@ -44,9 +44,9 @@ export default function LandingPage() {
description="Velora Café reimagines premium coffee culture with handcrafted espresso and curated ambiance." description="Velora Café reimagines premium coffee culture with handcrafted espresso and curated ambiance."
background={{ variant: "plain" }} background={{ variant: "plain" }}
mediaItems={[ mediaItems={[
{ imageSrc: "http://img.b2bpic.net/free-photo/double-espresso-coffee-mug-with-cinnamon-sticks-coffee-beans-wooden-board_181624-57338.jpg" }, { imageSrc: "https://img.b2bpic.net/free-photo/double-espresso-coffee-mug-with-cinnamon-sticks-coffee-beans-wooden-board_181624-57338.jpg" },
{ imageSrc: "http://img.b2bpic.net/free-photo/restaurant-room-with-two-long-dinner-tables_140725-8455.jpg" }, { imageSrc: "https://img.b2bpic.net/free-photo/restaurant-room-with-two-long-dinner-tables_140725-8455.jpg" },
{ imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-barista-making-coffee_23-2148865613.jpg" }, { imageSrc: "https://img.b2bpic.net/free-photo/medium-shot-barista-making-coffee_23-2148865613.jpg" },
]} ]}
/> />
</div> </div>
@@ -67,9 +67,9 @@ export default function LandingPage() {
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false} useInvertedBackground={false}
products={[ products={[
{ id: "1", name: "Espresso", price: "$4", variant: "Regular", imageSrc: "" }, { id: "1", name: "Espresso", price: "$4", variant: "Regular", imageSrc: "https://img.b2bpic.net/free-photo/cup-coffee-with-coffee-beans-wooden-table_140725-7833.jpg" },
{ id: "2", name: "Latte", price: "$5", variant: "Regular", imageSrc: "" }, { id: "2", name: "Latte", price: "$5", variant: "Regular", imageSrc: "https://img.b2bpic.net/free-photo/cappuccino-with-latte-art-table_140725-2575.jpg" },
{ id: "3", name: "Cappuccino", price: "$5", variant: "Regular", imageSrc: "" }, { id: "3", name: "Cappuccino", price: "$5", variant: "Regular", imageSrc: "https://img.b2bpic.net/free-photo/hot-cappuccino-with-cinnamon-topping_140725-5028.jpg" },
]} ]}
/> />
</div> </div>
@@ -81,7 +81,10 @@ export default function LandingPage() {
textboxLayout="default" textboxLayout="default"
useInvertedBackground={true} useInvertedBackground={true}
description="What our customers say." description="What our customers say."
testimonials={[{ id: "1", name: "Alice", handle: "@alice", testimonial: "Best coffee in town!" }, { id: "2", name: "Bob", handle: "@bob", testimonial: "Exceptional service." }]} testimonials={[
{ id: "1", name: "Alice", handle: "@alice", testimonial: "Best coffee in town!", imageSrc: "https://img.b2bpic.net/free-photo/portrait-smiling-woman-white-t-shirt_114579-2475.jpg" },
{ id: "2", name: "Bob", handle: "@bob", testimonial: "Exceptional service.", imageSrc: "https://img.b2bpic.net/free-photo/man-wearing-black-t-shirt-smiling_114579-2469.jpg" }
]}
/> />
</div> </div>