4 Commits

Author SHA1 Message Date
c1eabd9458 Update src/app/page.tsx 2026-05-12 22:47:33 +00:00
54fc7f2975 Merge version_2 into main
Merge version_2 into main
2026-05-12 22:46:38 +00:00
c2321f00d2 Update src/app/page.tsx 2026-05-12 22:46:35 +00:00
dfc497c645 Merge version_1 into main
Merge version_1 into main
2026-05-12 22:45:22 +00:00

View File

@@ -12,7 +12,7 @@ import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarS
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
import { Globe, Package, Smile } from "lucide-react";
import { Globe, Package, Smile, ShieldCheck } from "lucide-react";
export default function LandingPage() {
return (
@@ -92,14 +92,16 @@ export default function LandingPage() {
useInvertedBackground={false}
features={[
{
id: "1", title: "Free Shipping", subtitle: "On all orders worldwide", category: "Logistics", value: "Express"},
id: "1", title: "Free Shipping", subtitle: "Free global delivery on every single order", category: "Logistics", value: "Express"},
{
id: "2", title: "Secure Payment", subtitle: "Encrypted checkout process", category: "Safety", value: "SSL"},
id: "2", title: "Secure Payment", subtitle: "Protected and encrypted checkout process", category: "Safety", value: "SSL"},
{
id: "3", title: "24/7 Support", subtitle: "Help whenever you need it", category: "Service", value: "Live"},
id: "3", title: "24/7 Support", subtitle: "Available for help whenever you need it", category: "Service", value: "Live"},
]}
title="Why Shop With Us"
description="Quality assurance and excellence in every transaction."
tag="Trusted & Reliable"
tagIcon={ShieldCheck}
/>
</div>
@@ -255,4 +257,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}