|
|
|
|
@@ -1,77 +0,0 @@
|
|
|
|
|
"use client";
|
|
|
|
|
|
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
|
|
|
import ReactLenis from "lenis/react";
|
|
|
|
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
|
|
|
|
import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo';
|
|
|
|
|
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
|
|
|
|
|
|
|
|
|
export default function PricingPage() {
|
|
|
|
|
return (
|
|
|
|
|
<ThemeProvider
|
|
|
|
|
defaultButtonVariant="elastic-effect"
|
|
|
|
|
defaultTextAnimation="entrance-slide"
|
|
|
|
|
borderRadius="pill"
|
|
|
|
|
contentWidth="medium"
|
|
|
|
|
sizing="medium"
|
|
|
|
|
background="circleGradient"
|
|
|
|
|
cardStyle="glass-elevated"
|
|
|
|
|
primaryButtonStyle="gradient"
|
|
|
|
|
secondaryButtonStyle="glass"
|
|
|
|
|
headingFontWeight="normal"
|
|
|
|
|
>
|
|
|
|
|
<ReactLenis root>
|
|
|
|
|
<NavbarLayoutFloatingInline
|
|
|
|
|
navItems={[
|
|
|
|
|
{ name: "Home", id: "/" },
|
|
|
|
|
{ name: "Features", id: "/features" },
|
|
|
|
|
{ name: "Pricing", id: "/pricing" },
|
|
|
|
|
{ name: "Testimonials", id: "/testimonials" },
|
|
|
|
|
{ name: "Contact", id: "/contact" },
|
|
|
|
|
]}
|
|
|
|
|
brandName="J M Business Enterprises"
|
|
|
|
|
button={{ text: "Get Started", href: "/contact" }}
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<div id="pricing" data-section="pricing">
|
|
|
|
|
<PricingCardTwo
|
|
|
|
|
animationType="slide-up"
|
|
|
|
|
textboxLayout="default"
|
|
|
|
|
useInvertedBackground={false}
|
|
|
|
|
title="Flexible Pricing Plans"
|
|
|
|
|
description="Choose the plan that best fits your warehouse and logistics requirements."
|
|
|
|
|
plans={[
|
|
|
|
|
{
|
|
|
|
|
id: "basic", badge: "Essential", price: "$99", subtitle: "For small businesses", features: ["Basic storage", "Standard logistics", "Email support"],
|
|
|
|
|
buttons: [{ text: "Choose Plan", href: "#" }]
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: "pro", badge: "Advanced", price: "$299", subtitle: "For growing operations", features: ["Advanced storage", "Priority logistics", "24/7 support", "Inventory tracking"],
|
|
|
|
|
buttons: [{ text: "Choose Plan", href: "#" }]
|
|
|
|
|
}
|
|
|
|
|
]}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<FooterBaseCard
|
|
|
|
|
logoText="J M Business Enterprises"
|
|
|
|
|
columns={[
|
|
|
|
|
{ title: "Solutions", items: [
|
|
|
|
|
{ label: "Warehousing", href: "#" },
|
|
|
|
|
{ label: "Logistics", href: "#" },
|
|
|
|
|
] },
|
|
|
|
|
{ title: "Contact", items: [
|
|
|
|
|
{ label: "Dankuni Warehouse", href: "#" },
|
|
|
|
|
{ label: "Inquiry", href: "#" },
|
|
|
|
|
] },
|
|
|
|
|
{ title: "Legal", items: [
|
|
|
|
|
{ label: "Privacy Policy", href: "#" },
|
|
|
|
|
{ label: "Terms of Service", href: "#" },
|
|
|
|
|
] },
|
|
|
|
|
]}
|
|
|
|
|
copyrightText="© 2025 | J M Business Enterprises Pvt Ltd"
|
|
|
|
|
/>
|
|
|
|
|
</ReactLenis>
|
|
|
|
|
</ThemeProvider>
|
|
|
|
|
);
|
|
|
|
|
}
|