Merge version_3 into main #2

Merged
bender merged 1 commits from version_3 into main 2026-03-08 14:58:35 +00:00

View File

@@ -9,7 +9,7 @@ import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/F
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import { Award, Cake, Heart, Leaf, Palette, Phone, Sparkles, Star, Zap } from 'lucide-react';
import { Award, Cake, Heart, Leaf, Palette, Phone, Sparkles, Star, Zap, Flame, Clock } from 'lucide-react';
export default function LandingPage() {
return (
@@ -76,9 +76,30 @@ export default function LandingPage() {
tagIcon={Sparkles}
tagAnimation="slide-up"
products={[
{ id: "1", name: "Chocolate Cake", price: "₹499", imageSrc: "http://img.b2bpic.net/free-photo/chocolate-caramel-cake-slices-white-plate_114579-17112.jpg?_wi=3", imageAlt: "Rich chocolate cake", initialQuantity: 1 },
{ id: "2", name: "Strawberry Pastry", price: "₹120", imageSrc: "http://img.b2bpic.net/free-photo/sweet-pie-with-strawberry-anise-piece-burlap_114579-34501.jpg?_wi=2", imageAlt: "Fresh strawberry pastry", initialQuantity: 1 },
{ id: "3", name: "Fresh Donuts", price: "₹80", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-assortment-doughnut-wooden-surface_23-2148526357.jpg?_wi=2", imageAlt: "Assorted fresh donuts", initialQuantity: 1 }
{
id: "1",
name: "Chocolate Cake",
price: "₹499",
imageSrc: "http://img.b2bpic.net/free-photo/chocolate-caramel-cake-slices-white-plate_114579-17112.jpg?_wi=3",
imageAlt: "Rich chocolate cake",
initialQuantity: 1
},
{
id: "2",
name: "Strawberry Pastry",
price: "₹120",
imageSrc: "http://img.b2bpic.net/free-photo/sweet-pie-with-strawberry-anise-piece-burlap_114579-34501.jpg?_wi=2",
imageAlt: "Fresh strawberry pastry",
initialQuantity: 1
},
{
id: "3",
name: "Fresh Donuts",
price: "₹80",
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-assortment-doughnut-wooden-surface_23-2148526357.jpg?_wi=2",
imageAlt: "Assorted fresh donuts",
initialQuantity: 1
}
]}
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
@@ -172,4 +193,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}