Merge version_6 into main #8

Merged
bender merged 2 commits from version_6 into main 2026-04-23 13:02:48 +00:00
2 changed files with 78 additions and 0 deletions

View File

@@ -33,6 +33,7 @@ export default function LandingPage() {
navItems={[
{ name: "Home", id: "hero" },
{ name: "Features", id: "features" },
{ name: "Pricing", id: "/pricing" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" },
]}

77
src/app/pricing/page.tsx Normal file
View File

@@ -0,0 +1,77 @@
"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>
);
}