diff --git a/src/app/page.tsx b/src/app/page.tsx
index 2ddb406..a3c9369 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 } from 'lucide-react';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
@@ -28,12 +29,9 @@ export default function LandingPage() {
@@ -41,23 +39,16 @@ export default function LandingPage() {
@@ -67,12 +58,9 @@ export default function LandingPage() {
textboxLayout="split"
useInvertedBackground={true}
features={[
- {
- title: "100% Natural", description: "Unlike competitors, we use truly 100% real coconut water, no concentrate.", imageSrc: "http://img.b2bpic.net/free-photo/freshly-sliced-coconut-pieces_23-2151989287.jpg", imageAlt: "100% Natural Coconut Water"},
- {
- title: "High in Fibre", description: "Each pack contains as much fibre as 200g of broccoli for your daily needs.", imageSrc: "http://img.b2bpic.net/free-photo/freshly-sliced-coconut-pieces_23-2151989287.jpg", imageAlt: "High Fibre Content"},
- {
- title: "No Added Sugar", description: "Pure, natural ingredients only, keeping you refreshed without the guilt.", imageSrc: "http://img.b2bpic.net/free-photo/freshly-sliced-coconut-pieces_23-2151989287.jpg", imageAlt: "No Added Sugar"},
+ { title: "100% Natural", description: "Unlike competitors, we use truly 100% real coconut water, no concentrate.", imageSrc: "http://img.b2bpic.net/free-photo/freshly-sliced-coconut-pieces_23-2151989287.jpg", imageAlt: "100% Natural Coconut Water" },
+ { title: "High in Fibre", description: "Each pack contains as much fibre as 200g of broccoli for your daily needs.", imageSrc: "http://img.b2bpic.net/free-photo/freshly-sliced-coconut-pieces_23-2151989287.jpg", imageAlt: "High Fibre Content" },
+ { title: "No Added Sugar", description: "Pure, natural ingredients only, keeping you refreshed without the guilt.", imageSrc: "http://img.b2bpic.net/free-photo/freshly-sliced-coconut-pieces_23-2151989287.jpg", imageAlt: "No Added Sugar" },
]}
title="Four Reasons To Drink AV8"
description="Quality you can taste, sourced from nature."
@@ -86,18 +74,12 @@ export default function LandingPage() {
gridVariant="three-columns-all-equal-width"
useInvertedBackground={false}
products={[
- {
- id: "p1", name: "Coconut Water", price: "€2.49", variant: "Natural", imageSrc: "http://img.b2bpic.net/free-photo/yellow-red-soda-can-white-background_187299-46191.jpg"},
- {
- id: "p2", name: "Watermelon Coconut", price: "€2.49", variant: "Refreshing", imageSrc: "http://img.b2bpic.net/free-photo/silver-aluminum-can-green-background_23-2152003572.jpg"},
- {
- id: "p3", name: "Mango Coconut", price: "€2.49", variant: "Tropical", imageSrc: "http://img.b2bpic.net/free-photo/blank-minimal-white-tin-can-wooden-floor_53876-96708.jpg"},
- {
- id: "p4", name: "Pineapple Coconut", price: "€2.49", variant: "Zesty", imageSrc: "http://img.b2bpic.net/free-photo/pineapple-with-sunglasses-arrangement_23-2148545963.jpg"},
- {
- id: "p5", name: "Mixed Tester Pack", price: "€12.99", variant: "Sampler", imageSrc: "http://img.b2bpic.net/free-photo/delicious-kombucha-drink-arrangement_23-2148895723.jpg"},
- {
- id: "p6", name: "Subscription Pack", price: "€49.99", variant: "Monthly", imageSrc: "http://img.b2bpic.net/free-photo/copy-space-jar-with-watermelon-drink_23-2148606450.jpg"},
+ { id: "p1", name: "Coconut Water", price: "€2.49", variant: "Natural", imageSrc: "http://img.b2bpic.net/free-photo/yellow-red-soda-can-white-background_187299-46191.jpg" },
+ { id: "p2", name: "Watermelon Coconut", price: "€2.49", variant: "Refreshing", imageSrc: "http://img.b2bpic.net/free-photo/silver-aluminum-can-green-background_23-2152003572.jpg" },
+ { id: "p3", name: "Mango Coconut", price: "€2.49", variant: "Tropical", imageSrc: "http://img.b2bpic.net/free-photo/blank-minimal-white-tin-can-wooden-floor_53876-96708.jpg" },
+ { id: "p4", name: "Pineapple Coconut", price: "€2.49", variant: "Zesty", imageSrc: "http://img.b2bpic.net/free-photo/pineapple-with-sunglasses-arrangement_23-2148545963.jpg" },
+ { id: "p5", name: "Mixed Tester Pack", price: "€12.99", variant: "Sampler", imageSrc: "http://img.b2bpic.net/free-photo/delicious-kombucha-drink-arrangement_23-2148895723.jpg" },
+ { id: "p6", name: "Subscription Pack", price: "€49.99", variant: "Monthly", imageSrc: "http://img.b2bpic.net/free-photo/copy-space-jar-with-watermelon-drink_23-2148606450.jpg" },
]}
title="Our Hydration Blends"
description="Discover your new favorite refreshment."
@@ -113,12 +95,8 @@ export default function LandingPage() {
title="Key Metrics"
description="Our performance in numbers."
metrics={[
- {
- label: "Happy Customers", value: "10k+"
- },
- {
- label: "Pure Coconut", value: "100%"
- }
+ { icon: Zap, value: "10k+" },
+ { icon: Shield, value: "100%" }
]}
/>
@@ -126,8 +104,7 @@ export default function LandingPage() {