Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a56e4cb6f9 | |||
| 0432748afc | |||
| d811a9763a | |||
| 72b657dbe9 | |||
| b0924a1468 |
@@ -9,7 +9,7 @@ import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
|||||||
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
|
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
|
||||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
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() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -106,13 +106,22 @@ export default function LandingPage() {
|
|||||||
tag="Gallery"
|
tag="Gallery"
|
||||||
products={[
|
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",
|
||||||
|
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",
|
||||||
|
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",
|
||||||
|
onClick: () => console.log('Added Seasonal Rainbow to cart')
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
gridVariant="three-columns-all-equal-width"
|
gridVariant="three-columns-all-equal-width"
|
||||||
|
|||||||
Reference in New Issue
Block a user