5 Commits

Author SHA1 Message Date
c05d8ff08e Merge version_3 into main
Merge version_3 into main
2026-05-15 05:23:29 +00:00
9c1ade34f1 Update src/app/page.tsx 2026-05-15 05:23:23 +00:00
adfed56e0c Merge version_2 into main
Merge version_2 into main
2026-05-15 04:58:22 +00:00
8b4bb4bd52 Merge version_2 into main
Merge version_2 into main
2026-05-15 04:52:39 +00:00
80d161f50d Merge version_2 into main
Merge version_2 into main
2026-05-15 04:52:11 +00:00

View File

@@ -11,7 +11,7 @@ import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatin
import PricingCardOne from '@/components/sections/pricing/PricingCardOne';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
import { Zap, Shield } from "lucide-react";
import { Zap, Shield, Coffee, Mail, MapPin } from "lucide-react";
export default function LandingPage() {
return (
@@ -102,10 +102,10 @@ export default function LandingPage() {
<div id="reviews" data-section="reviews">
<TestimonialCardFifteen
useInvertedBackground={true}
testimonial="The energy boost is perfectly balanced. Tastes like a luxury espresso, performs like a powerhouse."
testimonial="IZEM has completely replaced my morning coffee. The sustained focus without the crash is a game changer for my workdays."
rating={5}
author="Yasmine K."
avatars={[{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DkIxX8cDA69KHv2NLWrsQvirvR/uploaded-1778820098747-2suwp4gz.png?_wi=1", alt: "User" }]}
author="Marcus Thorne, Software Architect"
avatars={[{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DkIxX8cDA69KHv2NLWrsQvirvR/uploaded-1778820098747-2suwp4gz.png?_wi=1", alt: "Customer" }]}
ratingAnimation="slide-up"
avatarsAnimation="slide-up"
/>
@@ -115,9 +115,12 @@ export default function LandingPage() {
<FaqDouble
textboxLayout="default"
useInvertedBackground={false}
faqs={[{ id: "1", title: "Is IZEM caffeine natural?", content: "Yes, it is derived from natural coffee extracts." }]}
title="Common Questions"
description="Everything you need to know about IZEM Energy."
faqs={[
{ id: "1", title: "What makes IZEM different?", content: "IZEM combines high-grade coffee extract with rich cocoa antioxidants for a smoother energy delivery system." },
{ id: "2", title: "Is it suitable for daily use?", content: "Yes, our natural caffeine profile is designed for sustainable daily consumption without the jitters." }
]}
title="Frequently Asked Questions"
description="Everything you need to know about IZEM Energy by Ifri."
faqsAnimation="blur-reveal"
/>
</div>
@@ -126,9 +129,9 @@ export default function LandingPage() {
<ContactSplit
useInvertedBackground={true}
background={{ variant: "sparkles-gradient" }}
tag="Contact"
title="Get In Touch"
description="Have questions or distributor queries? Reach out to our team."
tag="Connect"
title="Partner With Us"
description="Whether you are looking to become a retail partner or have bulk inquiries, we are ready to fuel your business."
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DkIxX8cDA69KHv2NLWrsQvirvR/uploaded-1778820098746-uavj53z2.png?_wi=4"
mediaAnimation="slide-up"
/>
@@ -136,12 +139,27 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterSimple
columns={[{ title: "Company", items: [{ label: "About", href: "#about" }] }]}
bottomLeftText="© 2024 IZEM Energy by Ifri. All Rights Reserved."
bottomRightText="Crafted with precision."
columns={[
{
title: "IZEM Energy",
items: [
{ label: "Our Story", href: "#about" },
{ label: "Careers", href: "#contact" }
]
},
{
title: "Resources",
items: [
{ label: "Wholesale Portal", href: "#contact" },
{ label: "Sustainability", href: "#flavors" }
]
}
]}
bottomLeftText="© 2025 IZEM Energy by Ifri. All Rights Reserved."
bottomRightText="Fueling the future, one drop at a time."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}