Update src/app/page.tsx
This commit is contained in:
@@ -9,7 +9,7 @@ import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
||||
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
|
||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
import { Award, Flower2, Heart, Sparkles } from "lucide-react";
|
||||
import { Award, Flower2, Heart, Sparkles, ShoppingCart, Zap } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -106,13 +106,25 @@ export default function LandingPage() {
|
||||
tag="Gallery"
|
||||
products={[
|
||||
{
|
||||
id: "1", name: "Blush Rose Elegance", price: "$85", imageSrc: "http://img.b2bpic.net/free-photo/closeup-pink-rose-bouquet_53876-153449.jpg", imageAlt: "Blush rose arrangement in classic vase"
|
||||
id: "1", name: "Blush Rose Elegance", price: "$85", imageSrc: "http://img.b2bpic.net/free-photo/closeup-pink-rose-bouquet_53876-153449.jpg", imageAlt: "Blush rose arrangement in classic vase", priceButtonProps: {
|
||||
text: "Add to Cart",
|
||||
icon: ShoppingCart,
|
||||
onClick: () => console.log('Added Blush Rose Elegance to cart')
|
||||
}
|
||||
},
|
||||
{
|
||||
id: "2", name: "Minimalist White", price: "$65", imageSrc: "http://img.b2bpic.net/free-photo/close-up-white-spring-peonies-flowers-bed_169016-21421.jpg", imageAlt: "White peonies and greenery arrangement"
|
||||
id: "2", name: "Minimalist White", price: "$65", imageSrc: "http://img.b2bpic.net/free-photo/close-up-white-spring-peonies-flowers-bed_169016-21421.jpg", imageAlt: "White peonies and greenery arrangement", priceButtonProps: {
|
||||
text: "Quick Order",
|
||||
icon: Zap,
|
||||
onClick: () => console.log('Quick ordered Minimalist White')
|
||||
}
|
||||
},
|
||||
{
|
||||
id: "3", name: "Seasonal Rainbow", price: "$95", imageSrc: "http://img.b2bpic.net/free-photo/top-view-colorful-daisies-with-frame_23-2148207830.jpg", imageAlt: "Mixed colorful spring flowers arrangement"
|
||||
id: "3", name: "Seasonal Rainbow", price: "$95", imageSrc: "http://img.b2bpic.net/free-photo/top-view-colorful-daisies-with-frame_23-2148207830.jpg", imageAlt: "Mixed colorful spring flowers arrangement", priceButtonProps: {
|
||||
text: "Add to Cart",
|
||||
icon: ShoppingCart,
|
||||
onClick: () => console.log('Added Seasonal Rainbow to cart')
|
||||
}
|
||||
}
|
||||
]}
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
|
||||
Reference in New Issue
Block a user