7 Commits

Author SHA1 Message Date
6a18a5e7db Update src/app/page.tsx 2026-03-21 03:47:34 +00:00
415bd93da8 Merge version_3 into main
Merge version_3 into main
2026-03-19 17:35:50 +00:00
a91fae62f6 Update src/app/products/page.tsx 2026-03-19 17:35:46 +00:00
9f2ec7a63f Update src/app/page.tsx 2026-03-19 17:35:45 +00:00
b02a82c372 Update src/app/contact/page.tsx 2026-03-19 17:35:45 +00:00
4e8fbcb132 Update src/app/about/page.tsx 2026-03-19 17:35:44 +00:00
6ae10a4f5a Merge version_2 into main
Merge version_2 into main
2026-03-19 17:29:59 +00:00
4 changed files with 84 additions and 148 deletions

View File

@@ -6,7 +6,7 @@ import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleAp
import FeatureCardSeven from "@/components/sections/feature/FeatureCardSeven"; import FeatureCardSeven from "@/components/sections/feature/FeatureCardSeven";
import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia"; import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia";
import FooterMedia from "@/components/sections/footer/FooterMedia"; import FooterMedia from "@/components/sections/footer/FooterMedia";
import { Award, HelpCircle } from "lucide-react"; import { Award, HelpCircle, MessageCircle, Truck, FileText, DollarSign } from "lucide-react";
export default function AboutPage() { export default function AboutPage() {
const navItems = [ const navItems = [
@@ -18,8 +18,7 @@ export default function AboutPage() {
const footerColumns = [ const footerColumns = [
{ {
title: "Shop", title: "Shop", items: [
items: [
{ label: "Latest Phones", href: "/" }, { label: "Latest Phones", href: "/" },
{ label: "Accessories", href: "/" }, { label: "Accessories", href: "/" },
{ label: "Deals & Offers", href: "/" }, { label: "Deals & Offers", href: "/" },
@@ -27,8 +26,7 @@ export default function AboutPage() {
], ],
}, },
{ {
title: "Company", title: "Company", items: [
items: [
{ label: "About Us", href: "/about" }, { label: "About Us", href: "/about" },
{ label: "Blog", href: "#" }, { label: "Blog", href: "#" },
{ label: "Careers", href: "#" }, { label: "Careers", href: "#" },
@@ -36,8 +34,7 @@ export default function AboutPage() {
], ],
}, },
{ {
title: "Support", title: "Support", items: [
items: [
{ label: "Contact Us", href: "/contact" }, { label: "Contact Us", href: "/contact" },
{ label: "FAQ", href: "#" }, { label: "FAQ", href: "#" },
{ label: "Warranty Info", href: "#" }, { label: "Warranty Info", href: "#" },
@@ -45,8 +42,7 @@ export default function AboutPage() {
], ],
}, },
{ {
title: "Legal", title: "Legal", items: [
items: [
{ label: "Privacy Policy", href: "#" }, { label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" }, { label: "Terms of Service", href: "#" },
{ label: "Return Policy", href: "#" }, { label: "Return Policy", href: "#" },
@@ -89,31 +85,27 @@ export default function AboutPage() {
features={[ features={[
{ {
id: 1, id: 1,
title: "Premium Selection", title: "Premium Selection", description: "Curated collection of the latest flagship smartphones from Apple, Samsung, OnePlus, and other leading brands. Every device is authenticated and comes with official warranty.", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-store-is-standing-near-stand-choosing-phone_169016-3831.jpg?_wi=2", imageAlt: "Premium smartphone selection", buttons: [
description: "Curated collection of the latest flagship smartphones from Apple, Samsung, OnePlus, and other leading brands. Every device is authenticated and comes with official warranty.", { text: "Chat with Support", href: "#" },
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-store-is-standing-near-stand-choosing-phone_169016-3831.jpg?_wi=2", ],
imageAlt: "Premium smartphone selection",
}, },
{ {
id: 2, id: 2,
title: "Expert Support", title: "Expert Support", description: "Our knowledgeable team is here to help you find the perfect device. From specifications to comparisons, we provide personalized guidance for every customer.", imageSrc: "http://img.b2bpic.net/free-photo/woman-working-call-center-office_23-2149256111.jpg?_wi=3", imageAlt: "Expert support team", buttons: [
description: "Our knowledgeable team is here to help you find the perfect device. From specifications to comparisons, we provide personalized guidance for every customer.", { text: "Track Delivery", href: "#" },
imageSrc: "http://img.b2bpic.net/free-photo/woman-working-call-center-office_23-2149256111.jpg?_wi=3", ],
imageAlt: "Expert support team",
}, },
{ {
id: 3, id: 3,
title: "Authorized Partner", title: "Authorized Partner", description: "Authorized distributor and service partner for all major smartphone brands. Genuine products, authentic warranty, and direct access to manufacturer support channels.", imageSrc: "http://img.b2bpic.net/free-photo/view-robotic-vacuum-cleaner-flat-surface_23-2151736732.jpg?_wi=1", imageAlt: "Store interior", buttons: [
description: "Authorized distributor and service partner for all major smartphone brands. Genuine products, authentic warranty, and direct access to manufacturer support channels.", { text: "View Warranty Details", href: "#" },
imageSrc: "http://img.b2bpic.net/free-photo/view-robotic-vacuum-cleaner-flat-surface_23-2151736732.jpg?_wi=1", ],
imageAlt: "Store interior",
}, },
{ {
id: 4, id: 4,
title: "Customer Commitment", title: "Customer Commitment", description: "Your satisfaction is our priority. We stand behind every product we sell with hassle-free returns, extended warranty options, and lifetime support.", imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-filling-up-her-credit-card-information-smartphone_23-2148673305.jpg?_wi=3", imageAlt: "Customer service", buttons: [
description: "Your satisfaction is our priority. We stand behind every product we sell with hassle-free returns, extended warranty options, and lifetime support.", { text: "Check Prices", href: "#" },
imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-filling-up-her-credit-card-information-smartphone_23-2148673305.jpg?_wi=3", ],
imageAlt: "Customer service",
}, },
]} ]}
/> />
@@ -137,25 +129,13 @@ export default function AboutPage() {
mediaAnimation="slide-up" mediaAnimation="slide-up"
faqs={[ faqs={[
{ {
id: "1", id: "1", title: "Quality Assurance", content: "Every product undergoes rigorous quality checks. We verify authenticity, test functionality, and ensure packaging integrity before delivery."},
title: "Quality Assurance",
content: "Every product undergoes rigorous quality checks. We verify authenticity, test functionality, and ensure packaging integrity before delivery.",
},
{ {
id: "2", id: "2", title: "Customer First", content: "Your needs drive our decisions. We listen, respond quickly, and continuously improve our services based on your feedback."},
title: "Customer First",
content: "Your needs drive our decisions. We listen, respond quickly, and continuously improve our services based on your feedback.",
},
{ {
id: "3", id: "3", title: "Innovation Focus", content: "Staying ahead of tech trends allows us to offer the latest devices and accessories. We educate customers about new features and possibilities."},
title: "Innovation Focus",
content: "Staying ahead of tech trends allows us to offer the latest devices and accessories. We educate customers about new features and possibilities.",
},
{ {
id: "4", id: "4", title: "Trust & Transparency", content: "No hidden charges, no surprises. Clear pricing, honest product descriptions, and transparent policies are our foundation."},
title: "Trust & Transparency",
content: "No hidden charges, no surprises. Clear pricing, honest product descriptions, and transparent policies are our foundation.",
},
]} ]}
/> />
</div> </div>

View File

@@ -6,7 +6,7 @@ import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleAp
import FeatureCardSeven from "@/components/sections/feature/FeatureCardSeven"; import FeatureCardSeven from "@/components/sections/feature/FeatureCardSeven";
import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia"; import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia";
import FooterMedia from "@/components/sections/footer/FooterMedia"; import FooterMedia from "@/components/sections/footer/FooterMedia";
import { Award, HelpCircle } from "lucide-react"; import { Award, HelpCircle, MessageCircle, Truck, FileText, DollarSign } from "lucide-react";
export default function ContactPage() { export default function ContactPage() {
const navItems = [ const navItems = [
@@ -18,8 +18,7 @@ export default function ContactPage() {
const footerColumns = [ const footerColumns = [
{ {
title: "Shop", title: "Shop", items: [
items: [
{ label: "Latest Phones", href: "/" }, { label: "Latest Phones", href: "/" },
{ label: "Accessories", href: "/" }, { label: "Accessories", href: "/" },
{ label: "Deals & Offers", href: "/" }, { label: "Deals & Offers", href: "/" },
@@ -27,8 +26,7 @@ export default function ContactPage() {
], ],
}, },
{ {
title: "Company", title: "Company", items: [
items: [
{ label: "About Us", href: "/about" }, { label: "About Us", href: "/about" },
{ label: "Blog", href: "#" }, { label: "Blog", href: "#" },
{ label: "Careers", href: "#" }, { label: "Careers", href: "#" },
@@ -36,8 +34,7 @@ export default function ContactPage() {
], ],
}, },
{ {
title: "Support", title: "Support", items: [
items: [
{ label: "Contact Us", href: "/contact" }, { label: "Contact Us", href: "/contact" },
{ label: "FAQ", href: "#" }, { label: "FAQ", href: "#" },
{ label: "Warranty Info", href: "#" }, { label: "Warranty Info", href: "#" },
@@ -45,8 +42,7 @@ export default function ContactPage() {
], ],
}, },
{ {
title: "Legal", title: "Legal", items: [
items: [
{ label: "Privacy Policy", href: "#" }, { label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" }, { label: "Terms of Service", href: "#" },
{ label: "Return Policy", href: "#" }, { label: "Return Policy", href: "#" },
@@ -89,31 +85,27 @@ export default function ContactPage() {
features={[ features={[
{ {
id: 1, id: 1,
title: "Phone Support", title: "Phone Support", description: "Call our customer service team directly. Available 24/7 for urgent queries and product assistance. +91-XXXX-XXXX-XXX", imageSrc: "http://img.b2bpic.net/free-photo/woman-working-call-center-office_23-2149256111.jpg?_wi=4", imageAlt: "Phone support", buttons: [
description: "Call our customer service team directly. Available 24/7 for urgent queries and product assistance. +91-XXXX-XXXX-XXX", { text: "Chat with Support", href: "#" },
imageSrc: "http://img.b2bpic.net/free-photo/woman-working-call-center-office_23-2149256111.jpg?_wi=4", ],
imageAlt: "Phone support",
}, },
{ {
id: 2, id: 2,
title: "Email Support", title: "Email Support", description: "Send us detailed questions and we'll respond within 24 hours. Perfect for complex queries, warranty claims, and bulk orders.", imageSrc: "http://img.b2bpic.net/free-photo/woman-working-call-center-office_23-2149256111.jpg?_wi=5", imageAlt: "Email support", buttons: [
description: "Send us detailed questions and we'll respond within 24 hours. Perfect for complex queries, warranty claims, and bulk orders.", { text: "Track Delivery", href: "#" },
imageSrc: "http://img.b2bpic.net/free-photo/woman-working-call-center-office_23-2149256111.jpg?_wi=5", ],
imageAlt: "Email support",
}, },
{ {
id: 3, id: 3,
title: "Store Visit", title: "Store Visit", description: "Visit our flagship store in the heart of the city. Experience products firsthand and get expert guidance from our team in person.", imageSrc: "http://img.b2bpic.net/free-photo/view-robotic-vacuum-cleaner-flat-surface_23-2151736732.jpg?_wi=3", imageAlt: "Store location", buttons: [
description: "Visit our flagship store in the heart of the city. Experience products firsthand and get expert guidance from our team in person.", { text: "View Warranty Details", href: "#" },
imageSrc: "http://img.b2bpic.net/free-photo/view-robotic-vacuum-cleaner-flat-surface_23-2151736732.jpg?_wi=3", ],
imageAlt: "Store location",
}, },
{ {
id: 4, id: 4,
title: "Live Chat", title: "Live Chat", description: "Chat with our support specialists in real-time. Quick answers to common questions about products, shipping, and warranty.", imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-filling-up-her-credit-card-information-smartphone_23-2148673305.jpg?_wi=4", imageAlt: "Live chat support", buttons: [
description: "Chat with our support specialists in real-time. Quick answers to common questions about products, shipping, and warranty.", { text: "Check Prices", href: "#" },
imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-filling-up-her-credit-card-information-smartphone_23-2148673305.jpg?_wi=4", ],
imageAlt: "Live chat support",
}, },
]} ]}
/> />
@@ -137,30 +129,15 @@ export default function ContactPage() {
mediaAnimation="slide-up" mediaAnimation="slide-up"
faqs={[ faqs={[
{ {
id: "1", id: "1", title: "What are your business hours?", content: "We're open Monday to Sunday, 10 AM to 8 PM. Online support is available 24/7. Holiday hours may vary."},
title: "What are your business hours?",
content: "We're open Monday to Sunday, 10 AM to 8 PM. Online support is available 24/7. Holiday hours may vary.",
},
{ {
id: "2", id: "2", title: "How can I track my order?", content: "You'll receive a tracking link via email once your order ships. You can also check status in your account on our website."},
title: "How can I track my order?",
content: "You'll receive a tracking link via email once your order ships. You can also check status in your account on our website.",
},
{ {
id: "3", id: "3", title: "Do you handle warranty claims?", content: "Yes, warranty claims are processed at our service center. Visit with your product and original receipt for quick resolution."},
title: "Do you handle warranty claims?",
content: "Yes, warranty claims are processed at our service center. Visit with your product and original receipt for quick resolution.",
},
{ {
id: "4", id: "4", title: "Can I cancel or modify my order?", content: "Orders can be modified within 1 hour of placement. After that, cancellation may incur fees. Contact us immediately for assistance."},
title: "Can I cancel or modify my order?",
content: "Orders can be modified within 1 hour of placement. After that, cancellation may incur fees. Contact us immediately for assistance.",
},
{ {
id: "5", id: "5", title: "What's your response time?", content: "Email queries: 24 hours. Chat: Instant. Phone: 2-3 minutes average wait. We prioritize urgent issues."},
title: "What's your response time?",
content: "Email queries: 24 hours. Chat: Instant. Phone: 2-3 minutes average wait. We prioritize urgent issues.",
},
]} ]}
/> />
</div> </div>

View File

@@ -9,7 +9,7 @@ import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo'; import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import FooterMedia from '@/components/sections/footer/FooterMedia'; import FooterMedia from '@/components/sections/footer/FooterMedia';
import { ShieldCheck, Sparkles, Award, CheckCircle, Heart, HelpCircle, Star, TrendingUp } from 'lucide-react'; import { ShieldCheck, Sparkles, Award, CheckCircle, Heart, HelpCircle, Star, TrendingUp, MessageCircle, Truck, FileText, DollarSign } from 'lucide-react';
import Link from 'next/link'; import Link from 'next/link';
export default function HomePage() { export default function HomePage() {
@@ -126,22 +126,38 @@ export default function HomePage() {
tag="Our Advantages" tag="Our Advantages"
tagIcon={Award} tagIcon={Award}
tagAnimation="slide-up" tagAnimation="slide-up"
buttons={[
{ text: "Explore Products", href: "/products" },
]}
buttonAnimation="slide-up"
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false} useInvertedBackground={false}
animationType="blur-reveal" animationType="blur-reveal"
features={[ features={[
{ {
id: 1, id: 1,
title: "24/7 Customer Support", description: "Expert team ready to assist you anytime with product queries, troubleshooting, and after-sales service.", imageSrc: "http://img.b2bpic.net/free-photo/woman-working-call-center-office_23-2149256111.jpg?_wi=1", imageAlt: "Professional customer support"}, title: "24/7 Customer Support", description: "Expert team ready to assist you anytime with product queries, troubleshooting, and after-sales service.", imageSrc: "http://img.b2bpic.net/free-photo/woman-working-call-center-office_23-2149256111.jpg?_wi=1", imageAlt: "Professional customer support", buttons: [
{ text: "Chat with Support", href: "#" },
],
},
{ {
id: 2, id: 2,
title: "Express Delivery", description: "Fast shipping across India with real-time tracking. Same-day delivery available in major cities.", imageSrc: "http://img.b2bpic.net/free-photo/young-delivery-boy-red-uniform-cap-holding-paper-package-smiling-cheerfully-showing-smartphone_141793-46193.jpg", imageAlt: "Express delivery service"}, title: "Express Delivery", description: "Fast shipping across India with real-time tracking. Same-day delivery available in major cities.", imageSrc: "http://img.b2bpic.net/free-photo/young-delivery-boy-red-uniform-cap-holding-paper-package-smiling-cheerfully-showing-smartphone_141793-46193.jpg", imageAlt: "Express delivery service", buttons: [
{ text: "Track Delivery", href: "#" },
],
},
{ {
id: 3, id: 3,
title: "2-Year Warranty", description: "Complete manufacturer warranty with extended protection plans. Hassle-free service center access.", imageSrc: "http://img.b2bpic.net/free-photo/man-woman-being-addicted-their-phones_23-2149017711.jpg?_wi=1", imageAlt: "Warranty protection"}, title: "2-Year Warranty", description: "Complete manufacturer warranty with extended protection plans. Hassle-free service center access.", imageSrc: "http://img.b2bpic.net/free-photo/man-woman-being-addicted-their-phones_23-2149017711.jpg?_wi=1", imageAlt: "Warranty protection", buttons: [
{ text: "View Warranty Details", href: "#" },
],
},
{ {
id: 4, id: 4,
title: "Competitive Pricing", description: "Best prices in India with price match guarantee. Regular deals and exclusive discounts for members.", imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-filling-up-her-credit-card-information-smartphone_23-2148673305.jpg?_wi=1", imageAlt: "Best pricing guarantee"}, title: "Competitive Pricing", description: "Best prices in India with price match guarantee. Regular deals and exclusive discounts for members.", imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-filling-up-her-credit-card-information-smartphone_23-2148673305.jpg?_wi=1", imageAlt: "Best pricing guarantee", buttons: [
{ text: "Check Prices", href: "#" },
],
},
]} ]}
/> />
</div> </div>

View File

@@ -5,7 +5,7 @@ import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleAp
import ProductCardOne from '@/components/sections/product/ProductCardOne'; import ProductCardOne from '@/components/sections/product/ProductCardOne';
import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven'; import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven';
import FooterMedia from '@/components/sections/footer/FooterMedia'; import FooterMedia from '@/components/sections/footer/FooterMedia';
import { Award } from 'lucide-react'; import { Award, MessageCircle, Truck, FileText, DollarSign } from 'lucide-react';
import Link from 'next/link'; import Link from 'next/link';
export default function ProductsPage() { export default function ProductsPage() {
@@ -18,8 +18,7 @@ export default function ProductsPage() {
const footerColumns = [ const footerColumns = [
{ {
title: "Shop", title: "Shop", items: [
items: [
{ label: "Latest Phones", href: "/products" }, { label: "Latest Phones", href: "/products" },
{ label: "Accessories", href: "/products" }, { label: "Accessories", href: "/products" },
{ label: "Deals & Offers", href: "/products" }, { label: "Deals & Offers", href: "/products" },
@@ -27,8 +26,7 @@ export default function ProductsPage() {
], ],
}, },
{ {
title: "Company", title: "Company", items: [
items: [
{ label: "About Us", href: "#" }, { label: "About Us", href: "#" },
{ label: "Blog", href: "#" }, { label: "Blog", href: "#" },
{ label: "Careers", href: "#" }, { label: "Careers", href: "#" },
@@ -36,8 +34,7 @@ export default function ProductsPage() {
], ],
}, },
{ {
title: "Support", title: "Support", items: [
items: [
{ label: "Contact Us", href: "#" }, { label: "Contact Us", href: "#" },
{ label: "FAQ", href: "#" }, { label: "FAQ", href: "#" },
{ label: "Warranty Info", href: "#" }, { label: "Warranty Info", href: "#" },
@@ -45,8 +42,7 @@ export default function ProductsPage() {
], ],
}, },
{ {
title: "Legal", title: "Legal", items: [
items: [
{ label: "Privacy Policy", href: "#" }, { label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" }, { label: "Terms of Service", href: "#" },
{ label: "Return Policy", href: "#" }, { label: "Return Policy", href: "#" },
@@ -92,47 +88,17 @@ export default function ProductsPage() {
animationType="scale-rotate" animationType="scale-rotate"
products={[ products={[
{ {
id: "iphone-15", id: "iphone-15", name: "iPhone 15 Pro Max", price: "₹1,39,999", imageSrc: "http://img.b2bpic.net/free-vector/smartphone-with-gradient-wallpaper_23-2147842890.jpg?_wi=2", imageAlt: "iPhone 15 Pro Max"},
name: "iPhone 15 Pro Max",
price: "₹1,39,999",
imageSrc: "http://img.b2bpic.net/free-vector/smartphone-with-gradient-wallpaper_23-2147842890.jpg?_wi=2",
imageAlt: "iPhone 15 Pro Max",
},
{ {
id: "samsung-s24", id: "samsung-s24", name: "Samsung Galaxy S24", price: "₹79,999", imageSrc: "http://img.b2bpic.net/free-vector/modern-design-concept-set-collection-with-two-stylish-black-smartphones-with-shadows-large-blanks-displays-touchscreens-grey_1284-49092.jpg?_wi=2", imageAlt: "Samsung Galaxy S24"},
name: "Samsung Galaxy S24",
price: "₹79,999",
imageSrc: "http://img.b2bpic.net/free-vector/modern-design-concept-set-collection-with-two-stylish-black-smartphones-with-shadows-large-blanks-displays-touchscreens-grey_1284-49092.jpg?_wi=2",
imageAlt: "Samsung Galaxy S24",
},
{ {
id: "oneplus-12", id: "oneplus-12", name: "OnePlus 12", price: "₹64,999", imageSrc: "http://img.b2bpic.net/free-photo/new-cell-phone-colorful-background_58702-4949.jpg?_wi=2", imageAlt: "OnePlus 12"},
name: "OnePlus 12",
price: "₹64,999",
imageSrc: "http://img.b2bpic.net/free-photo/new-cell-phone-colorful-background_58702-4949.jpg?_wi=2",
imageAlt: "OnePlus 12",
},
{ {
id: "accessories", id: "accessories", name: "Premium Accessories Bundle", price: "₹4,999", imageSrc: "http://img.b2bpic.net/free-photo/new-cellphone-charger-with-transparent-cover-isolated-white-background_58702-4666.jpg", imageAlt: "Premium Accessories"},
name: "Premium Accessories Bundle",
price: "₹4,999",
imageSrc: "http://img.b2bpic.net/free-photo/new-cellphone-charger-with-transparent-cover-isolated-white-background_58702-4666.jpg",
imageAlt: "Premium Accessories",
},
{ {
id: "iphone-15-standard", id: "iphone-15-standard", name: "iPhone 15", price: "₹79,999", imageSrc: "http://img.b2bpic.net/free-vector/smartphone-with-gradient-wallpaper_23-2147842890.jpg?_wi=3", imageAlt: "iPhone 15"},
name: "iPhone 15",
price: "₹79,999",
imageSrc: "http://img.b2bpic.net/free-vector/smartphone-with-gradient-wallpaper_23-2147842890.jpg?_wi=3",
imageAlt: "iPhone 15",
},
{ {
id: "samsung-a54", id: "samsung-a54", name: "Samsung Galaxy A54", price: "₹42,999", imageSrc: "http://img.b2bpic.net/free-vector/modern-design-concept-set-collection-with-two-stylish-black-smartphones-with-shadows-large-blanks-displays-touchscreens-grey_1284-49092.jpg?_wi=3", imageAlt: "Samsung Galaxy A54"},
name: "Samsung Galaxy A54",
price: "₹42,999",
imageSrc: "http://img.b2bpic.net/free-vector/modern-design-concept-set-collection-with-two-stylish-black-smartphones-with-shadows-large-blanks-displays-touchscreens-grey_1284-49092.jpg?_wi=3",
imageAlt: "Samsung Galaxy A54",
},
]} ]}
/> />
</div> </div>
@@ -150,24 +116,21 @@ export default function ProductsPage() {
features={[ features={[
{ {
id: 1, id: 1,
title: "Authentic Verification", title: "Authentic Verification", description: "Every product undergoes strict authenticity checks. QR-coded certificates and IMEI verification for all devices.", imageSrc: "http://img.b2bpic.net/free-photo/man-woman-being-addicted-their-phones_23-2149017711.jpg?_wi=2", imageAlt: "Authenticity verification", buttons: [
description: "Every product undergoes strict authenticity checks. QR-coded certificates and IMEI verification for all devices.", { text: "Chat with Support", href: "#" },
imageSrc: "http://img.b2bpic.net/free-photo/man-woman-being-addicted-their-phones_23-2149017711.jpg?_wi=2", ],
imageAlt: "Authenticity verification",
}, },
{ {
id: 2, id: 2,
title: "Extended Warranty Options", title: "Extended Warranty Options", description: "Choose from standard manufacturer warranty to extended plans up to 3 years. Covers accidental damage and breakdowns.", imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-filling-up-her-credit-card-information-smartphone_23-2148673305.jpg?_wi=2", imageAlt: "Extended warranty", buttons: [
description: "Choose from standard manufacturer warranty to extended plans up to 3 years. Covers accidental damage and breakdowns.", { text: "Track Delivery", href: "#" },
imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-filling-up-her-credit-card-information-smartphone_23-2148673305.jpg?_wi=2", ],
imageAlt: "Extended warranty",
}, },
{ {
id: 3, id: 3,
title: "Expert Product Guidance", title: "Expert Product Guidance", description: "Our specialists help you compare features, performance, and pricing. Free consultation and personalized recommendations.", imageSrc: "http://img.b2bpic.net/free-photo/woman-working-call-center-office_23-2149256111.jpg?_wi=2", imageAlt: "Expert guidance", buttons: [
description: "Our specialists help you compare features, performance, and pricing. Free consultation and personalized recommendations.", { text: "View Warranty Details", href: "#" },
imageSrc: "http://img.b2bpic.net/free-photo/woman-working-call-center-office_23-2149256111.jpg?_wi=2", ],
imageAlt: "Expert guidance",
}, },
]} ]}
/> />