Update src/app/payment/page.tsx

This commit is contained in:
2026-05-08 05:08:10 +00:00
parent 7b0c88aad7
commit 01dc1fcea0

View File

@@ -8,7 +8,6 @@ import FooterBase from '@/components/sections/footer/FooterBase';
export default function PaymentPage() {
const handlePayment = () => {
// Simulated payment trigger for standard methods (Visa, Mastercard)
alert("Opening secure payment gateway for Visa / Mastercard...");
};
@@ -48,11 +47,11 @@ export default function PaymentPage() {
description="Select the perfect plan to get your local business online."
plans={[
{
id: "basic", badge: "Basic", price: "$0/mo", subtitle: "Essential tools for getting started.", buttons: [{ text: "Get Started", onClick: handlePayment }],
id: "basic", badge: "Basic", price: "$0/mo", subtitle: "Essential tools for getting started.", buttons: [{ text: "Get Started", onClick: handlePayment }],
features: ["Basic listing page", "AI content generation", "Standard support"]
},
{
id: "core", badge: "Core", price: "$4.99/mo", subtitle: "Enhanced tools for growth.", buttons: [{ text: "Get Started", onClick: handlePayment }],
id: "core", badge: "Core", price: "$4.99/mo", subtitle: "Enhanced tools for growth.", buttons: [{ text: "Get Started", onClick: handlePayment }],
features: ["Everything in Basic", "Custom domain support", "Priority support"]
}
]}
@@ -72,4 +71,4 @@ export default function PaymentPage() {
</ReactLenis>
</ThemeProvider>
);
}
}