From f61ee87e0e1f3c90d57d506690749b72b6edaff7 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 12:25:37 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 31 ++++++++++++++++--------------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 29181cd..a11570b 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,7 +9,7 @@ import FeatureCardTwentyFive from "@/components/sections/feature/FeatureCardTwen import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo"; import ContactCTA from "@/components/sections/contact/ContactCTA"; import FooterSimple from "@/components/sections/footer/FooterSimple"; -import { Sparkles, Crown, Award, Gem, Heart, Shield, Ring, Wand2, Package, Star, Mail, Diamond, House, MessageSquareText, Settings, CircleDollarSign, ArrowLeftRight, Send } from "lucide-react"; +import { Sparkles, Crown, Award, Gem, Heart, Shield, Wand2, Package, Star, Mail, Diamond, House, MessageSquareText, Settings, CircleDollarSign, ArrowLeftRight, Send } from "lucide-react"; export default function LandingPage() { return ( @@ -53,7 +53,7 @@ export default function LandingPage() { background={{ variant: "radial-gradient" }} dashboard={{ title: "Jewellery Showcase", logoIcon: Diamond, - imageSrc: "http://img.b2bpic.net/free-photo/side-view-silver-bracelets-with-diamonds-black-wall_140725-12838.jpg?_wi=1", imageAlt: "Luxury jewellery collection", buttons: [ + imageSrc: "http://img.b2bpic.net/free-photo/side-view-silver-bracelets-with-diamonds-black-wall_140725-12838.jpg", imageAlt: "Luxury jewellery collection", buttons: [ { text: "View Collection", href: "#products" }, { text: "Learn More", href: "#about" }, ], @@ -63,9 +63,9 @@ export default function LandingPage() { { icon: Settings }, ], stats: [ - { title: "Collections", values: ["12", "15", "18"], description: "Unique collections." }, - { title: "Craftsmen", values: ["25", "28", "32"], description: "Expert artisans." }, - { title: "Satisfied Customers", values: ["5000", "6500", "8200"], valueSuffix: "+", description: "Happy clients worldwide." }, + { title: "Collections", values: [12, 15, 18], description: "Unique collections." }, + { title: "Craftsmen", values: [25, 28, 32], description: "Expert artisans." }, + { title: "Satisfied Customers", values: [5000, 6500, 8200], valueSuffix: "+", description: "Happy clients worldwide." }, ], chartTitle: "Sales Trend", chartData: [ { value: 65 }, @@ -96,13 +96,13 @@ export default function LandingPage() { gridVariant="three-columns-all-equal-width" products={[ { - id: "1", name: "Eternal Diamond Necklace", price: "$2,850", imageSrc: "http://img.b2bpic.net/free-photo/front-view-venus-bust-with-pearls_23-2148229263.jpg?_wi=1", imageAlt: "Diamond necklace", initialQuantity: 1, + id: "1", name: "Eternal Diamond Necklace", price: "$2,850", imageSrc: "http://img.b2bpic.net/free-photo/front-view-venus-bust-with-pearls_23-2148229263.jpg", imageAlt: "Diamond necklace", initialQuantity: 1, }, { - id: "2", name: "Solitaire Engagement Ring", price: "$4,200", imageSrc: "http://img.b2bpic.net/free-photo/woman-holding-beautiful-white-flower_181624-4540.jpg?_wi=1", imageAlt: "Engagement ring", initialQuantity: 1, + id: "2", name: "Solitaire Engagement Ring", price: "$4,200", imageSrc: "http://img.b2bpic.net/free-photo/woman-holding-beautiful-white-flower_181624-4540.jpg", imageAlt: "Engagement ring", initialQuantity: 1, }, { - id: "3", name: "Luminous Diamond Bracelet", price: "$1,950", imageSrc: "http://img.b2bpic.net/free-photo/attractive-young-woman-with-blonde-hair-stylish-white-dress-sits-luxurious-sofa_132075-8134.jpg?_wi=1", imageAlt: "Diamond bracelet", initialQuantity: 1, + id: "3", name: "Luminous Diamond Bracelet", price: "$1,950", imageSrc: "http://img.b2bpic.net/free-photo/attractive-young-woman-with-blonde-hair-stylish-white-dress-sits-luxurious-sofa_132075-8134.jpg", imageAlt: "Diamond bracelet", initialQuantity: 1, }, ]} buttons={[{ text: "View All Products", href: "#collections" }]} @@ -113,6 +113,7 @@ export default function LandingPage() {