diff --git a/src/app/page.tsx b/src/app/page.tsx
index b80c0e7..2a36c7b 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -12,7 +12,7 @@ import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
-import { Award, Heart, Layers, Shield, Star, Zap } from "lucide-react";
+import { Award, Shield, Zap, Star, Layers, Heart } from "lucide-react";
export default function LandingPage() {
return (
@@ -32,22 +32,10 @@ export default function LandingPage() {
@@ -55,48 +43,17 @@ export default function LandingPage() {
@@ -106,21 +63,9 @@ export default function LandingPage() {
useInvertedBackground={false}
title="Craftsmanship Redefined"
metrics={[
- {
- icon: Award,
- label: "Years Experience",
- value: "10+",
- },
- {
- icon: Shield,
- label: "Premium Materials",
- value: "100%",
- },
- {
- icon: Zap,
- label: "Global Shipments",
- value: "5K+",
- },
+ { icon: Award, label: "Years Experience", value: "10+" },
+ { icon: Shield, label: "Premium Materials", value: "100%" },
+ { icon: Zap, label: "Global Shipments", value: "5K+" }
]}
metricsAnimation="blur-reveal"
/>
@@ -133,48 +78,12 @@ export default function LandingPage() {
gridVariant="four-items-2x2-equal-grid"
useInvertedBackground={true}
products={[
- {
- id: "p1",
- name: "Luxury Dress Shirt",
- price: "$120",
- imageSrc: "http://img.b2bpic.net/free-photo/sale-shopping-fashion-style-people-concept-elegant-young-man-choosing-footwear-mall_1157-48893.jpg",
- imageAlt: "Luxury black shirt",
- },
- {
- id: "p2",
- name: "Formal Trousers",
- price: "$150",
- imageSrc: "http://img.b2bpic.net/free-photo/friends-shopping-second-hand-market_23-2149353750.jpg",
- imageAlt: "Formal black trousers",
- },
- {
- id: "p3",
- name: "Black Blazer",
- price: "$350",
- imageSrc: "http://img.b2bpic.net/free-photo/beautiful-fashion-woman-posing-with-elegant-suit_1328-3282.jpg",
- imageAlt: "Premium blazer",
- },
- {
- id: "p4",
- name: "Leather Dress Shoes",
- price: "$280",
- imageSrc: "http://img.b2bpic.net/free-photo/pair-classic-clothing-white-black_1203-6538.jpg",
- imageAlt: "Leather formal shoes",
- },
- {
- id: "p5",
- name: "Signature Gold Belt",
- price: "$90",
- imageSrc: "http://img.b2bpic.net/free-photo/important-details-bride-s-image-wedding-day_8353-9263.jpg",
- imageAlt: "Gold buckle belt",
- },
- {
- id: "p6",
- name: "Classic Black Tie",
- price: "$50",
- imageSrc: "http://img.b2bpic.net/free-photo/view-elegant-luxurious-wedding-stationery-planner-resources_23-2150166949.jpg",
- imageAlt: "Black silk tie",
- },
+ { id: "p1", name: "Luxury Dress Shirt", price: "$120", imageSrc: "http://img.b2bpic.net/free-photo/sale-shopping-fashion-style-people-concept-elegant-young-man-choosing-footwear-mall_1157-48893.jpg" },
+ { id: "p2", name: "Formal Trousers", price: "$150", imageSrc: "http://img.b2bpic.net/free-photo/friends-shopping-second-hand-market_23-2149353750.jpg" },
+ { id: "p3", name: "Black Blazer", price: "$350", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-fashion-woman-posing-with-elegant-suit_1328-3282.jpg" },
+ { id: "p4", name: "Leather Dress Shoes", price: "$280", imageSrc: "http://img.b2bpic.net/free-photo/pair-classic-clothing-white-black_1203-6538.jpg" },
+ { id: "p5", name: "Signature Gold Belt", price: "$90", imageSrc: "http://img.b2bpic.net/free-photo/important-details-bride-s-image-wedding-day_8353-9263.jpg" },
+ { id: "p6", name: "Classic Black Tie", price: "$50", imageSrc: "http://img.b2bpic.net/free-photo/view-elegant-luxurious-wedding-stationery-planner-resources_23-2150166949.jpg" }
]}
title="Curated Essentials"
description="Hand-picked pieces reflecting unmatched elegance."
@@ -183,39 +92,13 @@ export default function LandingPage() {
);
-}
+}
\ No newline at end of file