Update src/app/pricing/page.tsx
This commit is contained in:
@@ -4,39 +4,45 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import PricingCardThree from '@/components/sections/pricing/PricingCardThree';
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
|
||||
export default function PricingPage() {
|
||||
return (
|
||||
<ThemeProvider>
|
||||
<ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
|
||||
<ReactLenis root>
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Pricing", id: "/pricing" },
|
||||
{ name: "FAQ", id: "/faq" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="SMILETABS"
|
||||
/>
|
||||
<PricingCardThree
|
||||
title="Choose Your Plan"
|
||||
description="Affordable, sustainable, and simple subscriptions."
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
plans={[
|
||||
{ id: "basic", name: "Basic", price: "Rs 2000", buttons: [{ text: "Select" }], features: ["1 Month Supply", "Plastic Free"] },
|
||||
{ id: "pro", name: "Pro", price: "Rs 5000", buttons: [{ text: "Select" }], features: ["3 Month Supply", "Priority Shipping", "Eco-Friendly Bonus"] },
|
||||
]}
|
||||
/>
|
||||
<FooterBase
|
||||
columns={[
|
||||
{ title: "Shop", items: [{ label: "All Products", href: "/shop" }] },
|
||||
{ title: "Support", items: [{ label: "FAQ", href: "/faq" }, { label: "Contact", href: "/contact" }] },
|
||||
]}
|
||||
logoText="SMILETABS"
|
||||
/>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Pricing", id: "/pricing" },
|
||||
{ name: "FAQ", id: "/faq" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="pricing" data-section="pricing">
|
||||
<PricingCardThree
|
||||
title="Choose Your Plan"
|
||||
description="Affordable, sustainable, and simple subscriptions."
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={false}
|
||||
plans={[
|
||||
{ id: "basic", name: "Basic", price: "Rs 2000", buttons: [{ text: "Select" }], features: ["1 Month Supply", "Plastic Free"] },
|
||||
{ id: "pro", name: "Pro", price: "Rs 5000", buttons: [{ text: "Select" }], features: ["3 Month Supply", "Priority Shipping", "Eco-Friendly Bonus"] },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
logoText="SMILETABS"
|
||||
columns={[
|
||||
{ items: [{ label: "Shop", href: "/shop" }] },
|
||||
{ items: [{ label: "FAQ", href: "/faq" }, { label: "Contact", href: "/contact" }] },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user