diff --git a/src/app/page.tsx b/src/app/page.tsx
index 6ff069a..ba678dc 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -2,6 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
+import { BarChart, CheckCircle, Shield, ArrowRight, Zap, Target } from 'lucide-react';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import FeatureCardSixteen from '@/components/sections/feature/FeatureCardSixteen';
@@ -32,22 +33,10 @@ export default function LandingPage() {
@@ -55,9 +44,7 @@ export default function LandingPage() {
@@ -122,42 +88,9 @@ export default function LandingPage() {
gridVariant="three-columns-all-equal-width"
useInvertedBackground={false}
products={[
- {
- id: "1",
- name: "Modern Accessory",
- price: "$29.99",
- imageSrc: "http://img.b2bpic.net/free-photo/full-shot-rich-woman-outdoors_23-2149722613.jpg",
- },
- {
- id: "2",
- name: "Pro Software Bundle",
- price: "$99.00",
- imageSrc: "http://img.b2bpic.net/free-photo/minimalist-tech-setup-with-smartwatch_58702-17216.jpg",
- },
- {
- id: "3",
- name: "Minimalist Lamp",
- price: "$45.00",
- imageSrc: "http://img.b2bpic.net/free-photo/still-life-cozy-house-with-decorative-details-interior_169016-6258.jpg",
- },
- {
- id: "4",
- name: "E-Book Series",
- price: "$15.00",
- imageSrc: "http://img.b2bpic.net/free-photo/tool-sticky-tapes_23-2147654529.jpg",
- },
- {
- id: "5",
- name: "Organic Tote",
- price: "$20.00",
- imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-photography-with-camera-cellphone-fashion-accessories-essential-items-woman-overhead-view-top-view_1428-710.jpg",
- },
- {
- id: "6",
- name: "Premium Subscription",
- price: "$12.00/mo",
- imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-download-buttons-label-collection_23-2149934811.jpg",
- },
+ { id: "1", name: "Modern Accessory", price: "$29.99", imageSrc: "http://img.b2bpic.net/free-photo/full-shot-rich-woman-outdoors_23-2149722613.jpg" },
+ { id: "2", name: "Pro Software Bundle", price: "$99.00", imageSrc: "http://img.b2bpic.net/free-photo/minimalist-tech-setup-with-smartwatch_58702-17216.jpg" },
+ { id: "3", name: "Minimalist Lamp", price: "$45.00", imageSrc: "http://img.b2bpic.net/free-photo/still-life-cozy-house-with-decorative-details-interior_169016-6258.jpg" },
]}
title="Featured Collections"
description="Explore our curated selection of digital and physical goods."
@@ -168,15 +101,7 @@ export default function LandingPage() {
@@ -189,24 +114,9 @@ export default function LandingPage() {
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
metrics={[
- {
- id: "m1",
- value: "50K+",
- title: "Products Sold",
- description: "Diverse items across categories.",
- },
- {
- id: "m2",
- value: "120+",
- title: "Global Partners",
- description: "Brands using our infrastructure.",
- },
- {
- id: "m3",
- value: "99.9%",
- title: "Uptime",
- description: "Always available for sales.",
- },
+ { id: "m1", value: "50K+", title: "Products Sold", description: "Diverse items across categories.", icon: BarChart },
+ { id: "m2", value: "120+", title: "Global Partners", description: "Brands using our infrastructure.", icon: Target },
+ { id: "m3", value: "99.9%", title: "Uptime", description: "Always available for sales.", icon: Zap },
]}
title="Commerce in numbers"
description="We are proud of our milestones achieved with you."
@@ -217,42 +127,13 @@ export default function LandingPage() {
);
-}
+}
\ No newline at end of file