Merge version_5 into main
Merge version_5 into main
This commit was merged in pull request #8.
This commit is contained in:
@@ -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"]
|
||||
}
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user