Add src/app/pricing/page.tsx

This commit is contained in:
2026-05-07 15:09:05 +00:00
parent e171590ce6
commit 713d15a87d

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

@@ -0,0 +1,72 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
export default function PricingPage() {
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
defaultTextAnimation="reveal-blur"
borderRadius="rounded"
contentWidth="smallMedium"
sizing="largeSmallSizeMediumTitles"
background="blurBottom"
cardStyle="outline"
primaryButtonStyle="gradient"
secondaryButtonStyle="layered"
headingFontWeight="light"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "Pricing", id: "/pricing" },
{ name: "Testimonials", id: "/testimonials" },
{ name: "Contact", id: "/contact" },
]}
brandName="Bikaner Sweets"
/>
</div>
<div id="pricing" data-section="pricing">
<PricingCardNine
title="Our Pricing Plans"
description="Choose the plan that fits your needs best."
textboxLayout="default"
animationType="slide-up"
useInvertedBackground={false}
plans={[
{
id: "basic", title: "Basic Package", price: "₹999", period: "per month", features: ["Authentic Sweets", "Fast Delivery", "Quality Guarantee"],
button: { text: "Get Started" }
},
{
id: "pro", title: "Pro Package", price: "₹1999", period: "per month", features: ["All Basic Features", "Priority Support", "Seasonal Specials"],
button: { text: "Upgrade Now" }
},
{
id: "enterprise", title: "Enterprise Package", price: "₹4999", period: "per month", features: ["All Pro Features", "Custom Orders", "Bulk Discounts"],
button: { text: "Contact Us" }
}
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{ items: [{ label: "Home", href: "/" }, { label: "Pricing", href: "/pricing" }] },
{ items: [{ label: "Contact", href: "/contact" }, { label: "Privacy", href: "#" }] }
]}
logoText="Bikaner Sweets"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}