diff --git a/src/app/page.tsx b/src/app/page.tsx
index 5f8b549..c6ead88 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 { Zap, Shield, Settings, Truck } from "lucide-react";
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
import FooterCard from '@/components/sections/footer/FooterCard';
@@ -30,95 +31,37 @@ export default function LandingPage() {
@@ -130,42 +73,10 @@ export default function LandingPage() {
gridVariant="four-items-2x2-equal-grid"
useInvertedBackground={true}
products={[
- {
- id: "p1",
- brand: "Bespoke",
- name: "Custom Sofa",
- price: "From ₹45,000",
- rating: 5,
- reviewCount: "12",
- imageSrc: "http://img.b2bpic.net/free-photo/interior-design-zoom-calls-with-chair_23-2149684490.jpg?_wi=1",
- },
- {
- id: "p2",
- brand: "Bespoke",
- name: "Wooden Bed",
- price: "From ₹65,000",
- rating: 5,
- reviewCount: "8",
- imageSrc: "http://img.b2bpic.net/free-photo/pullout-drawer-black-cabinet-countertop-modern-organization_169016-71206.jpg?_wi=1",
- },
- {
- id: "p3",
- brand: "Bespoke",
- name: "Dining Table",
- price: "From ₹35,000",
- rating: 5,
- reviewCount: "15",
- imageSrc: "http://img.b2bpic.net/free-photo/close-up-dining-table-with-plates-details_23-2148848673.jpg?_wi=1",
- },
- {
- id: "p4",
- brand: "Bespoke",
- name: "Upholstered Chair",
- price: "From ₹12,000",
- rating: 5,
- reviewCount: "20",
- imageSrc: "http://img.b2bpic.net/free-photo/empty-chair-table_1339-4302.jpg",
- },
+ { id: "p1", brand: "Bespoke", name: "Custom Sofa", price: "From ₹45,000", rating: 5, reviewCount: "12", imageSrc: "http://img.b2bpic.net/free-photo/interior-design-zoom-calls-with-chair_23-2149684490.jpg" },
+ { id: "p2", brand: "Bespoke", name: "Wooden Bed", price: "From ₹65,000", rating: 5, reviewCount: "8", imageSrc: "http://img.b2bpic.net/free-photo/pullout-drawer-black-cabinet-countertop-modern-organization_169016-71206.jpg" },
+ { id: "p3", brand: "Bespoke", name: "Dining Table", price: "From ₹35,000", rating: 5, reviewCount: "15", imageSrc: "http://img.b2bpic.net/free-photo/close-up-dining-table-with-plates-details_23-2148848673.jpg" },
+ { id: "p4", brand: "Bespoke", name: "Upholstered Chair", price: "From ₹12,000", rating: 5, reviewCount: "20", imageSrc: "http://img.b2bpic.net/free-photo/empty-chair-table_1339-4302.jpg" },
]}
title="Featured Collections"
description="Explore our curated range of handcrafted furniture."
@@ -177,34 +88,10 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
features={[
- {
- title: "Handcrafted",
- description: "Expert artisan touch.",
- buttonIcon: "Zap",
- imageSrc: "http://img.b2bpic.net/free-photo/cozy-reading-nook-with-armchair-warm-lamp-light-books_23-2152031755.jpg?_wi=2",
- imageAlt: "luxury wooden interior design beige",
- },
- {
- title: "Premium Wood",
- description: "Solid walnut and teak.",
- buttonIcon: "Shield",
- imageSrc: "http://img.b2bpic.net/free-photo/interior-design-zoom-calls-with-chair_23-2149684490.jpg?_wi=2",
- imageAlt: "custom wooden sofa neutral fabric",
- },
- {
- title: "Customizable",
- description: "Made to your vision.",
- buttonIcon: "Settings",
- imageSrc: "http://img.b2bpic.net/free-photo/pullout-drawer-black-cabinet-countertop-modern-organization_169016-71206.jpg?_wi=2",
- imageAlt: "elegant wooden bed neutral upholstery",
- },
- {
- title: "Local Delivery",
- description: "Across Delhi NCR.",
- buttonIcon: "Truck",
- imageSrc: "http://img.b2bpic.net/free-photo/close-up-dining-table-with-plates-details_23-2148848673.jpg?_wi=2",
- imageAlt: "wooden dining table handcrafted teak",
- },
+ { title: "Handcrafted", description: "Expert artisan touch.", buttonIcon: Zap, imageSrc: "http://img.b2bpic.net/free-photo/cozy-reading-nook-with-armchair-warm-lamp-light-books_23-2152031755.jpg", imageAlt: "luxury wooden interior design beige" },
+ { title: "Premium Wood", description: "Solid walnut and teak.", buttonIcon: Shield, imageSrc: "http://img.b2bpic.net/free-photo/interior-design-zoom-calls-with-chair_23-2149684490.jpg", imageAlt: "custom wooden sofa neutral fabric" },
+ { title: "Customizable", description: "Made to your vision.", buttonIcon: Settings, imageSrc: "http://img.b2bpic.net/free-photo/pullout-drawer-black-cabinet-countertop-modern-organization_169016-71206.jpg", imageAlt: "elegant wooden bed neutral upholstery" },
+ { title: "Local Delivery", description: "Across Delhi NCR.", buttonIcon: Truck, imageSrc: "http://img.b2bpic.net/free-photo/close-up-dining-table-with-plates-details_23-2148848673.jpg", imageAlt: "wooden dining table handcrafted teak" },
]}
title="Why Choose Us"
description="Excellence in every detail."
@@ -214,36 +101,13 @@ export default function LandingPage() {