Update src/app/pricing/page.tsx

This commit is contained in:
2026-03-04 09:34:54 +00:00
parent 91d9964c14
commit 9e70fc7b6d

View File

@@ -4,22 +4,22 @@ import Link from "next/link";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import HeroBillboard from "@/components/sections/hero/HeroBillboard";
import PricingCardOne from "@/components/sections/pricing/PricingCardOne";
import PricingCardEight from "@/components/sections/pricing/PricingCardEight";
import FooterSimple from "@/components/sections/footer/FooterSimple";
import { Zap, Rocket, Sparkles, Crown } from "lucide-react";
export default function PricingPage() {
const navItems = [
{ name: "How It Works", id: "how-it-works" },
{ name: "Services", id: "services" },
{ name: "Pricing", id: "pricing" },
{ name: "Contact", id: "contact" },
{ name: "Home", id: "/" },
{ name: "How It Works", id: "/how-it-works" },
{ name: "Services", id: "/services" },
{ name: "Pricing", id: "/pricing" },
{ name: "Contact", id: "/contact" },
];
const footerColumns = [
{
title: "Product",
items: [
title: "Product", items: [
{ label: "Features", href: "#" },
{ label: "Pricing", href: "/pricing" },
{ label: "Security", href: "#" },
@@ -27,8 +27,7 @@ export default function PricingPage() {
],
},
{
title: "Company",
items: [
title: "Company", items: [
{ label: "About", href: "/about" },
{ label: "Blog", href: "#" },
{ label: "Contact", href: "/contact" },
@@ -36,8 +35,7 @@ export default function PricingPage() {
],
},
{
title: "Industries",
items: [
title: "Industries", items: [
{ label: "Dental Practices", href: "/industries" },
{ label: "Salons & Spas", href: "/industries" },
{ label: "Restaurants", href: "/industries" },
@@ -45,8 +43,7 @@ export default function PricingPage() {
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Cookie Policy", href: "#" },
@@ -71,7 +68,7 @@ export default function PricingPage() {
<NavbarLayoutFloatingInline
brandName="Romèra"
navItems={navItems}
button={{ text: "Book a Demo", href: "#contact" }}
button={{ text: "Book a Demo", href: "/contact" }}
animateOnLoad={true}
/>
</div>
@@ -84,67 +81,36 @@ export default function PricingPage() {
tag="Flexible Plans"
tagIcon={Zap}
tagAnimation="slide-up"
buttons={[{ text: "Book a Demo", href: "#contact" }]}
buttons={[{ text: "Book a Demo", href: "/contact" }]}
buttonAnimation="slide-up"
mediaAnimation="none"
/>
</div>
<div id="pricing" data-section="pricing">
<PricingCardOne
<PricingCardEight
title="Transparent Pricing for Every Stage"
description="Choose the package that fits your business. All plans include 24/7 AI automation and priority support."
textboxLayout="default"
useInvertedBackground={false}
plans={[
{
id: "starter",
badge: "Getting Started",
badgeIcon: Rocket,
price: "€2,500 + €397/mo",
subtitle: "Perfect for small service businesses ready to automate leads",
id: "starter", badge: "Getting Started", badgeIcon: Rocket,
price: "€2,500 + €397/mo", subtitle: "Perfect for small service businesses ready to automate leads", buttons: [{ text: "Get Started", href: "/contact" }],
features: [
"Lead Capture Website",
"AI Lead Form Handler",
"Basic CRM Pipeline",
"Email Notifications",
"Mobile Dashboard",
"7-day Setup",
],
"Lead Capture Website", "AI Lead Form Handler", "Basic CRM Pipeline", "Email Notifications", "Mobile Dashboard", "7-day Setup"],
},
{
id: "growth",
badge: "Most Popular",
badgeIcon: Sparkles,
price: "€5,000 + €750/mo",
subtitle: "For growing businesses scaling their automation",
id: "growth", badge: "Most Popular", badgeIcon: Sparkles,
price: "€5,000 + €750/mo", subtitle: "For growing businesses scaling their automation", buttons: [{ text: "Get Started", href: "/contact" }],
features: [
"Everything in Starter",
"AI Phone Assistant",
"Automated SMS Reminders",
"Email Reminder Sequences",
"Advanced Pipeline Automation",
"Customizable Workflows",
"Priority Support",
"14-day Setup",
],
"Everything in Starter", "AI Phone Assistant", "Automated SMS Reminders", "Email Reminder Sequences", "Advanced Pipeline Automation", "Customizable Workflows", "Priority Support", "14-day Setup"],
},
{
id: "elite",
badge: "Premium",
badgeIcon: Crown,
price: "€8,000 + €1,250/mo",
subtitle: "For established businesses maximizing every booking",
id: "elite", badge: "Premium", badgeIcon: Crown,
price: "€8,000 + €1,250/mo", subtitle: "For established businesses maximizing every booking", buttons: [{ text: "Get Started", href: "/contact" }],
features: [
"Everything in Growth",
"Multi-Channel AI Assistant",
"Advanced CRM Integration",
"Predictive Analytics",
"Custom API Access",
"Dedicated Account Manager",
"Monthly Optimization Sessions",
"21-day Setup",
],
"Everything in Growth", "Multi-Channel AI Assistant", "Advanced CRM Integration", "Predictive Analytics", "Custom API Access", "Dedicated Account Manager", "Monthly Optimization Sessions", "21-day Setup"],
},
]}
animationType="slide-up"
@@ -160,4 +126,4 @@ export default function PricingPage() {
</div>
</ThemeProvider>
);
}
}