Update src/app/payment/page.tsx

This commit is contained in:
2026-05-08 05:01:45 +00:00
parent b599e6514c
commit afa905743d

View File

@@ -7,6 +7,11 @@ import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo';
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...");
};
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
@@ -43,11 +48,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: "Choose this", href: "#" }],
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: "Choose this", href: "#" }],
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"]
}
]}