diff --git a/src/app/page.tsx b/src/app/page.tsx index 1829c23..ec0de5c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -12,7 +12,7 @@ import ProductCardOne from '@/components/sections/product/ProductCardOne'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo'; -import { Shield } from "lucide-react"; +import { Shield, Zap, Star, Award } from "lucide-react"; export default function LandingPage() { return ( @@ -32,22 +32,10 @@ export default function LandingPage() {
@@ -177,42 +93,12 @@ export default function LandingPage() { gridVariant="four-items-2x2-equal-grid" useInvertedBackground={false} products={[ - { - id: "1", - name: "Midnight Cuff", - price: "$890", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-fashion-stylish-hipster-businessman-model-dressed-elegant-light-blue-suit-glasses_158538-11386.jpg?_wi=2", - }, - { - id: "2", - name: "Starlight Ring", - price: "$1,200", - imageSrc: "http://img.b2bpic.net/free-photo/bracelet-filled-with-rings_23-2148643216.jpg?_wi=2", - }, - { - id: "3", - name: "Shadow Belt", - price: "$1,500", - imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-father-mother-with-baby_1328-2831.jpg?_wi=2", - }, - { - id: "4", - name: "Obsidian Pendant", - price: "$2,100", - imageSrc: "http://img.b2bpic.net/free-photo/stylish-women-s-earrings-rays-sun_8353-9670.jpg", - }, - { - id: "5", - name: "Eclipse Glasses", - price: "$950", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-female-with-long-brown-hair-blue-sunglasses-naked-shoulders-isolated-grey-background_613910-11021.jpg", - }, - { - id: "6", - name: "Vanguard Wallet", - price: "$700", - imageSrc: "http://img.b2bpic.net/free-photo/concept-location-photo-shoot-photo-studio_185193-164038.jpg", - }, + { id: "1", name: "Midnight Cuff", price: "$890", imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-fashion-stylish-hipster-businessman-model-dressed-elegant-light-blue-suit-glasses_158538-11386.jpg" }, + { id: "2", name: "Starlight Ring", price: "$1,200", imageSrc: "http://img.b2bpic.net/free-photo/bracelet-filled-with-rings_23-2148643216.jpg" }, + { id: "3", name: "Shadow Belt", price: "$1,500", imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-father-mother-with-baby_1328-2831.jpg" }, + { id: "4", name: "Obsidian Pendant", price: "$2,100", imageSrc: "http://img.b2bpic.net/free-photo/stylish-women-s-earrings-rays-sun_8353-9670.jpg" }, + { id: "5", name: "Eclipse Glasses", price: "$950", imageSrc: "http://img.b2bpic.net/free-photo/portrait-female-with-long-brown-hair-blue-sunglasses-naked-shoulders-isolated-grey-background_613910-11021.jpg" }, + { id: "6", name: "Vanguard Wallet", price: "$700", imageSrc: "http://img.b2bpic.net/free-photo/concept-location-photo-shoot-photo-studio_185193-164038.jpg" } ]} title="Curated Exclusives" description="Each item is selected for its unique blend of utility and aesthetic perfection." @@ -224,30 +110,10 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} features={[ - { - title: "Artisan Craft", - description: "Hand-stitched details.", - buttonIcon: "Zap", - imageSrc: "http://img.b2bpic.net/free-photo/small-business-manager-his-workshop_23-2149094583.jpg", - }, - { - title: "Premium Materials", - description: "Only top-tier metals.", - buttonIcon: "Shield", - imageSrc: "http://img.b2bpic.net/free-photo/aesthetic-background-with-patterned-glass-texture_53876-125864.jpg", - }, - { - title: "Engraved Signatures", - description: "Custom identity markers.", - buttonIcon: "Star", - imageSrc: "http://img.b2bpic.net/free-photo/black-plate-with-pasta-dark-background_23-2148340396.jpg", - }, - { - title: "Exclusive Packaging", - description: "Luxury delivered in style.", - buttonIcon: "Award", - imageSrc: "http://img.b2bpic.net/free-photo/packages-wrapped_1122-834.jpg", - }, + { title: "Artisan Craft", description: "Hand-stitched details.", buttonIcon: Zap, imageSrc: "http://img.b2bpic.net/free-photo/small-business-manager-his-workshop_23-2149094583.jpg" }, + { title: "Premium Materials", description: "Only top-tier metals.", buttonIcon: Shield, imageSrc: "http://img.b2bpic.net/free-photo/aesthetic-background-with-patterned-glass-texture_53876-125864.jpg" }, + { title: "Engraved Signatures", description: "Custom identity markers.", buttonIcon: Star, imageSrc: "http://img.b2bpic.net/free-photo/black-plate-with-pasta-dark-background_23-2148340396.jpg" }, + { title: "Exclusive Packaging", description: "Luxury delivered in style.", buttonIcon: Award, imageSrc: "http://img.b2bpic.net/free-photo/packages-wrapped_1122-834.jpg" } ]} title="Why Choose Armor?" description="We define luxury through uncompromising standards and timeless aesthetics." @@ -258,15 +124,7 @@ export default function LandingPage() {