Merge version_2 into main #2

Merged
bender merged 1 commits from version_2 into main 2026-04-18 09:32:57 +00:00

View File

@@ -9,7 +9,7 @@ import FooterSimple from '@/components/sections/footer/FooterSimple';
import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel';
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
import { Award, Users, Zap, BatteryCharging, Shield, Headphones } from "lucide-react";
@@ -98,24 +98,24 @@ export default function LandingPage() {
</div>
<div id="products" data-section="products">
<ProductCardThree
<ProductCardTwo
animationType="slide-up"
textboxLayout="default"
gridVariant="uniform-all-items-equal"
gridVariant="three-columns-all-equal-width"
useInvertedBackground={false}
products={[
{
id: "p1", name: "Pro Tablet", price: "$999", imageSrc: "http://img.b2bpic.net/free-photo/seller-man-mobile-phone-professional-consultant-tech-store-shop_627829-4977.jpg"},
id: "p1", brand: "Saha", name: "Pro Tablet", price: "₹85,000", rating: 4.8, reviewCount: "1.2k", imageSrc: "http://img.b2bpic.net/free-photo/seller-man-mobile-phone-professional-consultant-tech-store-shop_627829-4977.jpg"},
{
id: "p2", name: "Mechanical Keyboard", price: "$199", imageSrc: "http://img.b2bpic.net/free-photo/minimalist-tech-setup-with-nvme-ssd_58702-17245.jpg"},
id: "p2", brand: "Saha", name: "Mechanical Keyboard", price: "₹16,500", rating: 4.7, reviewCount: "850", imageSrc: "http://img.b2bpic.net/free-photo/minimalist-tech-setup-with-nvme-ssd_58702-17245.jpg"},
{
id: "p3", name: "Gaming Mouse", price: "$89", imageSrc: "http://img.b2bpic.net/free-photo/mouse-with-dripping-pink-paint_23-2148263684.jpg"},
id: "p3", brand: "Saha", name: "Gaming Mouse", price: "₹7,500", rating: 4.9, reviewCount: "2.1k", imageSrc: "http://img.b2bpic.net/free-photo/mouse-with-dripping-pink-paint_23-2148263684.jpg"},
{
id: "p4", name: "4K DSLR Lens", price: "$1299", imageSrc: "http://img.b2bpic.net/free-photo/various-swappable-camera-objectives_140725-8083.jpg"},
id: "p4", brand: "Saha", name: "4K DSLR Lens", price: "₹1,10,000", rating: 4.9, reviewCount: "450", imageSrc: "http://img.b2bpic.net/free-photo/various-swappable-camera-objectives_140725-8083.jpg"},
{
id: "p5", name: "Smart Speaker Hub", price: "$149", imageSrc: "http://img.b2bpic.net/free-photo/loaded-circuit-board_1384-27.jpg"},
id: "p5", brand: "Saha", name: "Smart Speaker Hub", price: "₹12,500", rating: 4.6, reviewCount: "600", imageSrc: "http://img.b2bpic.net/free-photo/loaded-circuit-board_1384-27.jpg"},
{
id: "p6", name: "Laptop Professional", price: "$2499", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-blue-technology-background_23-2148882620.jpg"},
id: "p6", brand: "Saha", name: "Laptop Professional", price: "₹2,10,000", rating: 5.0, reviewCount: "300", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-blue-technology-background_23-2148882620.jpg"},
]}
title="Shop Our Collection"
description="Explore our premium selection of electronic hardware."
@@ -229,4 +229,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}