3 Commits

Author SHA1 Message Date
52387abe27 Update src/app/page.tsx 2026-05-07 12:01:36 +00:00
173e086fd9 Merge version_2 into main
Merge version_2 into main
2026-05-07 11:58:25 +00:00
5fb04a2054 Merge version_2 into main
Merge version_2 into main
2026-05-07 11:58:01 +00:00

View File

@@ -2,10 +2,10 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import ContactSplit from '@/components/sections/contact/ContactSplit'; import ContactText from '@/components/sections/contact/ContactText';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow'; import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import HeroOverlayTestimonial from '@/components/sections/hero/HeroOverlayTestimonial'; import HeroOverlayTestimonial from '@/components/sections/hero/HeroOverlayTestimonial';
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven'; import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
@@ -13,7 +13,7 @@ import ProductCardThree from '@/components/sections/product/ProductCardThree';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
import TextAbout from '@/components/sections/about/TextAbout'; import TextAbout from '@/components/sections/about/TextAbout';
import { BookOpen, Shield, Smartphone, Mail, FileText, HelpCircle } from "lucide-react"; import { BookOpen, Shield, Smartphone } from "lucide-react";
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -144,37 +144,35 @@ export default function LandingPage() {
</div> </div>
<div id="faq" data-section="faq"> <div id="faq" data-section="faq">
<FaqSplitMedia <FaqSplitText
textboxLayout="split" sideTitle="Frequently Asked Questions"
useInvertedBackground={false} sideDescription="Common queries about our platform."
faqsAnimation="slide-up" faqsAnimation="slide-up"
faqs={[ faqs={[
{ id: "f1", title: "Is membership required?", content: "Yes, to access our full library." }, { id: "f1", title: "Is membership required?", content: "Yes, to access our full library." },
{ id: "f2", title: "Can I read offline?", content: "Absolutely, download anytime." }, { id: "f2", title: "Can I read offline?", content: "Absolutely, download anytime." },
{ id: "f3", title: "Do you support Kindle?", content: "We support all major formats." } { id: "f3", title: "Do you support Kindle?", content: "We support all major formats." }
]} ]}
title="Frequently Asked Questions" useInvertedBackground={false}
description="Common queries about our platform."
imageSrc="http://img.b2bpic.net/free-photo/close-up-stack-books_1098-1352.jpg?_wi=2"
/> />
</div> </div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactSplit <ContactText
tag="Contact Us" text="Get in Touch with NexaReades"
title="Get in Touch"
description="Have questions about our library or need help with your account? Our team is here to assist."
background={{ variant: "sparkles-gradient" }} background={{ variant: "sparkles-gradient" }}
useInvertedBackground={true} useInvertedBackground={true}
imageSrc="http://img.b2bpic.net/free-photo/top-view-tablet-with-financial-review_1232-184.jpg?_wi=2" buttons={[{ text: "Contact Support" }]}
/> />
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterLogoReveal <FooterBaseCard
logoText="NexaReades" logoText="NexaReades"
leftLink={{ text: "Privacy Policy", href: "#" }} columns={[
rightLink={{ text: "Terms of Service", href: "#" }} { title: "Company", items: [{ label: "About", href: "#about" }, { label: "Careers", href: "#" }] },
{ title: "Legal", items: [{ label: "Privacy", href: "#" }, { label: "Terms", href: "#" }] }
]}
/> />
</div> </div>
</ReactLenis> </ReactLenis>