Merge version_4 into main #5

Merged
bender merged 1 commits from version_4 into main 2026-04-16 14:19:45 +00:00

View File

@@ -3,10 +3,10 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import AboutMetric from '@/components/sections/about/AboutMetric';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FaqBase from '@/components/sections/faq/FaqBase';
import FeatureBento from '@/components/sections/feature/FeatureBento';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import FooterBase from '@/components/sections/footer/FooterBase';
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import PricingCardOne from '@/components/sections/pricing/PricingCardOne';
@@ -147,30 +147,33 @@ export default function LandingPage() {
</div>
<div id="faq" data-section="faq">
<FaqSplitText
useInvertedBackground={true}
<FaqBase
title="Common Questions"
description="Find answers to frequently asked questions about our AI platform."
faqs={[{ id: "f1", title: "How does the AI work?", content: "Neural networks parse your notes." }, { id: "f2", title: "Is my data private?", content: "Yes, encrypted." }]}
sideTitle="Common Questions"
faqsAnimation="blur-reveal"
faqsAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={true}
className="text-left"
/>
</div>
<div id="contact" data-section="contact">
<ContactSplit
useInvertedBackground={false}
background={{ variant: "sparkles-gradient" }}
<ContactCenter
tag="Contact Us"
title="Ready to Start Your Journey?"
description="Get in touch to learn more about our AI capabilities."
imageSrc="http://img.b2bpic.net/free-photo/system-administrator-ai-server-farm_482257-75524.jpg"
mediaAnimation="slide-up"
useInvertedBackground={false}
background={{ variant: "plain" }}
className="text-left"
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[{ items: [{ label: "Product", href: "#products" }, { label: "Pricing", href: "#pricing" }] }]}
<FooterBase
columns={[{ title: "Company", items: [{ label: "Product", href: "#products" }, { label: "Pricing", href: "#pricing" }] }]}
logoText="zn class"
className="text-left"
/>
</div>
</ReactLenis>