6 Commits

Author SHA1 Message Date
34913f75f5 Update src/app/page.tsx 2026-04-06 21:14:28 +00:00
7ce8a2a351 Merge version_15 into main
Merge version_15 into main
2026-04-06 21:12:18 +00:00
647ab46984 Update src/app/page.tsx 2026-04-06 21:12:15 +00:00
aca5056ba1 Merge version_14 into main
Merge version_14 into main
2026-04-06 21:08:56 +00:00
e340a024d2 Update src/app/page.tsx 2026-04-06 21:08:50 +00:00
60a95158a1 Merge version_13 into main
Merge version_13 into main
2026-04-06 21:06:18 +00:00

View File

@@ -7,7 +7,7 @@ import FooterSimple from '@/components/sections/footer/FooterSimple';
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import ProductCardFour from '@/components/sections/product/ProductCardFour';
import { ShieldCheck } from "lucide-react";
import { ShieldCheck, FileCheck, FlaskConical, Microscope } from "lucide-react";
import AboutMetric from '@/components/sections/about/AboutMetric';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
@@ -59,8 +59,10 @@ export default function LandingPage() {
<AboutMetric
title="Quality Assured Standards"
metrics={[
{ icon: ShieldCheck, label: "HPLC Verified", value: "99%+ Purity" },
{ icon: ShieldCheck, label: "Third-Party Testing", value: "Batch Certified" }
{ icon: ShieldCheck, label: "HPLC Verified", value: "99%+ Purity Guaranteed" },
{ icon: FileCheck, label: "Batch Certified", value: "ISO 9001 Compliant" },
{ icon: Microscope, label: "Purity Analysis", value: "MS Verification" },
{ icon: FlaskConical, label: "Lab Grade", value: "Sterile Tested High Purity" }
]}
metricsAnimation="slide-up"
useInvertedBackground={false}
@@ -121,4 +123,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}