From 492199428ebec0c8dc8a035097215eae18405495 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 24 Apr 2026 07:41:07 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 150 ++++++++++++++++------------------------------- 1 file changed, 49 insertions(+), 101 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 8c71f49..459ffad 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,7 +11,7 @@ import MetricCardThree from '@/components/sections/metrics/MetricCardThree'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import ProductCardThree from '@/components/sections/product/ProductCardThree'; import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve'; -import { Award, Smile, Star, ShoppingBag } from "lucide-react"; +import { Award, Smile, Star, ShoppingBag, Sparkles } from "lucide-react"; export default function LandingPage() { return ( @@ -31,14 +31,10 @@ export default function LandingPage() { @@ -75,12 +63,9 @@ export default function LandingPage() { @@ -91,23 +76,17 @@ export default function LandingPage() { textboxLayout="default" gridVariant="three-columns-all-equal-width" useInvertedBackground={false} - tag="Freshly Made" - tagIcon={ShoppingBag} + tag="Best Seller" + tagIcon={Sparkles} products={[ - { - id: "p1", name: "Gulab Jamun", price: "$12.00", imageSrc: "http://img.b2bpic.net/free-photo/pickled-cornel-cherries-green-bowl_114579-57635.jpg"}, - { - id: "p2", name: "Kaju Katli", price: "$25.00", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-delicious-food-plate_23-2148734688.jpg"}, - { - id: "p3", name: "Rasgulla", price: "$15.00", imageSrc: "http://img.b2bpic.net/free-photo/overhead-view-delicious-chees-slices-conifer-cones-towel-black-background_140725-94597.jpg"}, - { - id: "p4", name: "Besan Ladoo", price: "$10.00", imageSrc: "http://img.b2bpic.net/free-photo/bowls-colorful-candies-marble-surface_114579-43576.jpg"}, - { - id: "p5", name: "Hot Jalebi", price: "$8.00", imageSrc: "http://img.b2bpic.net/free-photo/top-view-sliced-persimmon-pancake-light-surface_140725-75542.jpg"}, - { - id: "p6", name: "Milk Cake", price: "$18.00", imageSrc: "http://img.b2bpic.net/free-photo/top-close-up-view-sweets-lemon-sunflower-seed-halva-plate-cinnamon-cup-tea_140725-78743.jpg"}, + { id: "p1", name: "Gulab Jamun", price: "₹499", imageSrc: "http://img.b2bpic.net/free-photo/pickled-cornel-cherries-green-bowl_114579-57635.jpg"}, + { id: "p2", name: "Kaju Katli", price: "₹899", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-delicious-food-plate_23-2148734688.jpg"}, + { id: "p3", name: "Rasgulla", price: "₹399", imageSrc: "http://img.b2bpic.net/free-photo/overhead-view-delicious-chees-slices-conifer-cones-towel-black-background_140725-94597.jpg"}, + { id: "p4", name: "Besan Ladoo", price: "₹450", imageSrc: "http://img.b2bpic.net/free-photo/bowls-colorful-candies-marble-surface_114579-43576.jpg"}, + { id: "p5", name: "Hot Jalebi", price: "₹299", imageSrc: "http://img.b2bpic.net/free-photo/top-view-sliced-persimmon-pancake-light-surface_140725-75542.jpg"}, + { id: "p6", name: "Milk Cake", price: "₹650", imageSrc: "http://img.b2bpic.net/free-photo/top-close-up-view-sweets-lemon-sunflower-seed-halva-plate-cinnamon-cup-tea_140725-78743.jpg"}, ]} - title="Our Best-Selling Mithai" + title="Our Freshly Made Mithai" description="From slow-cooked Gulab Jamuns to delicate Kaju Katli, explore our curated selection of Indian favorites." /> @@ -116,16 +95,11 @@ export default function LandingPage() { @@ -198,26 +156,16 @@ export default function LandingPage() { imageSrc="http://img.b2bpic.net/free-photo/view-delicious-food-sold-streets-city_23-2151516953.jpg?_wi=2" logoText="Lovely Sweet Shop" columns={[ - { - title: "Quick Links", items: [ - { - label: "Shop", href: "#products"}, - { - label: "About Us", href: "#about"}, - { - label: "Contact", href: "#contact"}, - ], - }, - { - title: "Support", items: [ - { - label: "FAQs", href: "#faq"}, - { - label: "Order Tracking", href: "#"}, - { - label: "Returns", href: "#"}, - ], - }, + { title: "Quick Links", items: [ + { label: "Shop", href: "#products"}, + { label: "About Us", href: "#about"}, + { label: "Contact", href: "#contact"}, + ]}, + { title: "Support", items: [ + { label: "FAQs", href: "#faq"}, + { label: "Order Tracking", href: "#"}, + { label: "Returns", href: "#"}, + ]}, ]} /> -- 2.49.1