Merge version_2 into main #2
@@ -10,7 +10,7 @@ import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCar
|
||||
import MetricCardFourteen from "@/components/sections/metrics/MetricCardFourteen";
|
||||
import ContactSplit from "@/components/sections/contact/ContactSplit";
|
||||
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
|
||||
import { Coffee, Star, Sparkles, Heart, Mail } from "lucide-react";
|
||||
import { Coffee, Star, Sparkles, Heart, Mail, ShoppingCart } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -81,26 +81,29 @@ export default function LandingPage() {
|
||||
<div id="menu" data-section="menu">
|
||||
<ProductCardThree
|
||||
title="Signature Menu"
|
||||
description="Handpicked selections from our daily menu"
|
||||
tag="Must Try"
|
||||
tagIcon={Star}
|
||||
description="Handpicked selections from our daily menu – add items below to start your order"
|
||||
tag="Order Now"
|
||||
tagIcon={ShoppingCart}
|
||||
tagAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "1", name: "Single Origin Espresso", price: "$4.50", imageSrc: "http://img.b2bpic.net/free-photo/close-up-hands-preparing-drink-with-milk_23-2148865605.jpg", imageAlt: "Perfectly pulled espresso shot with crema"
|
||||
id: "1", name: "Single Origin Espresso", price: "$4.50", imageSrc: "http://img.b2bpic.net/free-photo/close-up-hands-preparing-drink-with-milk_23-2148865605.jpg", imageAlt: "Perfectly pulled espresso shot with crema", onQuantityChange: (qty) => console.log("Espresso quantity:", qty),
|
||||
onProductClick: () => console.log("Espresso clicked")
|
||||
},
|
||||
{
|
||||
id: "2", name: "Organic Croissant", price: "$6.00", imageSrc: "http://img.b2bpic.net/free-photo/man-puts-croissant-into-paper-bag-using-tongs_1303-32309.jpg", imageAlt: "Buttery, flaky organic croissant"
|
||||
id: "2", name: "Organic Croissant", price: "$6.00", imageSrc: "http://img.b2bpic.net/free-photo/man-puts-croissant-into-paper-bag-using-tongs_1303-32309.jpg", imageAlt: "Buttery, flaky organic croissant", onQuantityChange: (qty) => console.log("Croissant quantity:", qty),
|
||||
onProductClick: () => console.log("Croissant clicked")
|
||||
},
|
||||
{
|
||||
id: "3", name: "Artisan Sandwich", price: "$12.00", imageSrc: "http://img.b2bpic.net/free-photo/serving-burger-background_1321-4511.jpg", imageAlt: "Gourmet sandwich with fresh ingredients"
|
||||
id: "3", name: "Artisan Sandwich", price: "$12.00", imageSrc: "http://img.b2bpic.net/free-photo/serving-burger-background_1321-4511.jpg", imageAlt: "Gourmet sandwich with fresh ingredients", onQuantityChange: (qty) => console.log("Sandwich quantity:", qty),
|
||||
onProductClick: () => console.log("Sandwich clicked")
|
||||
}
|
||||
]}
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="slide-up"
|
||||
buttons={[{ text: "Full Menu", href: "#" }]}
|
||||
buttons={[{ text: "Checkout", href: "#contact" }]}
|
||||
buttonAnimation="blur-reveal"
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user