Merge version_2 into main #4

Merged
bender merged 1 commits from version_2 into main 2026-04-02 10:32:57 +00:00

View File

@@ -8,9 +8,9 @@ import FooterSimple from '@/components/sections/footer/FooterSimple';
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import PricingCardOne from '@/components/sections/pricing/PricingCardOne';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
import { LineChart, ShieldCheck, Zap } from "lucide-react";
import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
import { LineChart, ShieldCheck, Zap, MessageCircle } from "lucide-react";
export default function LandingPage() {
return (
@@ -87,45 +87,47 @@ export default function LandingPage() {
</div>
<div id="pricing" data-section="pricing">
<PricingCardOne
animationType="depth-3d"
textboxLayout="default"
<PricingCardNine
animationType="blur-reveal"
textboxLayout="split"
useInvertedBackground={true}
plans={[
{
id: "starter", badge: "Essential", price: "$99", subtitle: "For small teams and startups", features: ["Core API access", "24/7 Support", "100GB Storage"],
},
{
id: "growth", badge: "Recommended", price: "$299", subtitle: "For growing organizations", features: ["Advanced analytics", "Custom integrations", "Unlimited seats"],
},
{
id: "enterprise", badge: "Custom", price: "Custom", subtitle: "For large scale infrastructure", features: ["Dedicated servers", "Priority support", "Global deployment"],
},
]}
title="Simple Transparent Pricing"
description="Select the plan that fits your growth trajectory perfectly."
plans={[
{
id: "starter", title: "Essential", price: "$99", period: "/mo", features: ["Core API access", "24/7 Support", "100GB Storage"],
button: { text: "Choose Plan" }
},
{
id: "growth", title: "Growth", price: "$299", period: "/mo", features: ["Advanced analytics", "Custom integrations", "Unlimited seats"],
button: { text: "Choose Plan" }
},
{
id: "enterprise", title: "Enterprise", price: "Custom", period: "", features: ["Dedicated servers", "Priority support", "Global deployment"],
button: { text: "Contact Sales" }
},
]}
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardSix
animationType="slide-up"
textboxLayout="default"
<TestimonialCardSixteen
animationType="blur-reveal"
textboxLayout="split"
useInvertedBackground={false}
testimonials={[
{
id: "t1", name: "Alex Rivers", handle: "@arivers", testimonial: "Nisme AI completely transformed our predictive modeling. Incredible speed and accuracy.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-modern-businessman-front-building_23-2148171102.jpg?_wi=1"},
{
id: "t2", name: "Sarah Chen", handle: "@schen_dev", testimonial: "The easiest AI integration we've ever managed. The support team is also top notch.", imageSrc: "http://img.b2bpic.net/free-photo/smiley-young-man-holding-tablet-mock-up_23-2148326968.jpg"},
{
id: "t3", name: "Marcus Thorne", handle: "@mthorne", testimonial: "Scaling with Nisme has been effortless. Their infrastructure is genuinely best-in-class.", imageSrc: "http://img.b2bpic.net/free-photo/cheerful-mature-bearded-bald-male-entrepreneur-wearing-glasses-sweater-blue-formal-shirt-smiling-happily-while-keyboarding-portable-computer-playing-video-games-lunch-break_343059-4238.jpg"},
{
id: "t4", name: "Elena Voss", handle: "@evoss_ai", testimonial: "An essential platform for any startup looking to leverage artificial intelligence today.", imageSrc: "http://img.b2bpic.net/free-photo/charming-businesswoman-with-digital-tablet_1098-434.jpg"},
{
id: "t5", name: "David Park", handle: "@dpark_eng", testimonial: "Robust features and simple API design. Exactly what we needed for our backend services.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-modern-businessman-front-building_23-2148171102.jpg?_wi=2"},
]}
title="Loved by Innovators"
description="Hear from leaders who are changing the game with Nisme AI."
kpiItems={[
{ value: "98%", label: "Retention Rate" },
{ value: "40%", label: "Avg. Efficiency Gain" },
{ value: "120+", label: "Global Integrations" }
]}
testimonials={[
{
id: "t1", name: "Alex Rivers", role: "CTO", company: "TechStream", testimonial: "Nisme AI completely transformed our predictive modeling.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-modern-businessman-front-building_23-2148171102.jpg?_wi=1"},
{
id: "t2", name: "Sarah Chen", role: "DevOps", company: "CloudNative", testimonial: "The easiest AI integration we've ever managed.", imageSrc: "http://img.b2bpic.net/free-photo/smiley-young-man-holding-tablet-mock-up_23-2148326968.jpg"},
]}
/>
</div>
@@ -165,4 +167,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}