Update src/app/pricing/page.tsx

This commit is contained in:
2026-04-19 04:00:15 +00:00
parent 782e53e8d8
commit 148e4a2206

View File

@@ -7,21 +7,27 @@ import FooterBase from '@/components/sections/footer/FooterBase';
export default function PricingPage() {
return (
<ThemeProvider>
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "Features", id: "/#features" },
{ name: "Pricing", id: "/pricing" },
{ name: "About", id: "/about" },
{ name: "Blog", id: "/blog" },
{ name: "Docs", id: "/documentation" },
{ name: "Contact", id: "/contact" }
]}
brandName="LuminaWrite"
/>
<PricingCardTwo title="Plans" description="Choose your plan" animationType="slide-up" textboxLayout="default" plans={[]} />
<FooterBase columns={[]} logoText="LuminaWrite" />
<ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Blog", id: "/blog" },
{ name: "Documentation", id: "/documentation" },
{ name: "Contact", id: "/contact" },
{ name: "Pricing", id: "/pricing" },
{ name: "Dashboard", id: "/dashboard" }
]}
brandName="LuminaWrite"
/>
</div>
<div id="pricing" data-section="pricing">
<PricingCardTwo title="Plans" description="Choose your plan" animationType="slide-up" textboxLayout="default" plans={[]} useInvertedBackground={false} />
</div>
<div id="footer" data-section="footer">
<FooterBase columns={[]} logoText="LuminaWrite" />
</div>
</ThemeProvider>
);
}