Update src/app/pricing/page.tsx

This commit is contained in:
2026-05-06 08:33:44 +00:00
parent ce5b6dce71
commit 917d3f0f5c

View File

@@ -7,7 +7,7 @@ import FooterSimple from '@/components/sections/footer/FooterSimple';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import PricingCardThree from '@/components/sections/pricing/PricingCardThree';
export default function LandingPage() {
export default function PricingPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-bubble"
@@ -25,22 +25,10 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Features",
id: "#features",
},
{
name: "Pricing",
id: "/pricing",
},
{
name: "About",
id: "/about",
},
{ name: "Home", id: "/" },
{ name: "Features", id: "#features" },
{ name: "Pricing", id: "/pricing" },
{ name: "About", id: "/about" }
]}
brandName="Lumora"
/>
@@ -52,51 +40,9 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
plans={[
{
id: "basic",
price: "$19",
name: "Essential",
features: [
"5 Projects",
"Basic Analytics",
"Community Support",
],
buttons: [
{
text: "Get Started",
},
],
},
{
id: "pro",
price: "$49",
name: "Professional",
features: [
"Unlimited Projects",
"Client Analytics",
"Priority Support",
],
buttons: [
{
text: "Upgrade Now",
},
],
},
{
id: "ent",
price: "$99",
name: "Enterprise",
features: [
"Custom Integrations",
"Advanced Reporting",
"Dedicated Account Manager",
],
buttons: [
{
text: "Contact Us",
},
],
},
{ id: "basic", price: "$19", name: "Essential", features: ["5 Projects", "Basic Analytics", "Community Support"], buttons: [{ text: "Get Started" }] },
{ id: "pro", price: "$49", name: "Professional", features: ["Unlimited Projects", "Client Analytics", "Priority Support"], buttons: [{ text: "Upgrade Now" }] },
{ id: "ent", price: "$99", name: "Enterprise", features: ["Custom Integrations", "Advanced Reporting", "Dedicated Account Manager"], buttons: [{ text: "Contact Us" }] }
]}
title="Simple, transparent pricing"
description="Choose a plan that scales with your ambition."
@@ -110,49 +56,18 @@ export default function LandingPage() {
title="Pricing FAQs"
description="Billing related questions answered."
faqs={[
{
id: "pf1",
title: "Do you offer annual plans?",
content: "Yes, save 20% with annual billing.",
},
{
id: "pf2",
title: "Are there student discounts?",
content: "We offer special pricing for educational institutions.",
},
{ id: "pf1", title: "Do you offer annual plans?", content: "Yes, save 20% with annual billing." },
{ id: "pf2", title: "Are there student discounts?", content: "We offer special pricing for educational institutions." }
]}
faqsAnimation="slide-up"
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "Product",
items: [
{
label: "Features",
href: "#features",
},
{
label: "Pricing",
href: "/pricing",
},
],
},
{
title: "Company",
items: [
{
label: "About",
href: "/about",
},
{
label: "Contact",
href: "/contact",
},
],
},
{ title: "Product", items: [{ label: "Features", href: "#features" }, { label: "Pricing", href: "/pricing" }] },
{ title: "Company", items: [{ label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] }
]}
bottomLeftText="© 2024 Lumora Inc."
bottomRightText="Privacy Policy"
@@ -161,4 +76,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}