From ae8a18657cfa4b39276bc19241ed29acf5419d5e Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 09:40:01 +0000 Subject: [PATCH] Add src/app/payment-methods/page.tsx --- src/app/payment-methods/page.tsx | 65 ++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 src/app/payment-methods/page.tsx diff --git a/src/app/payment-methods/page.tsx b/src/app/payment-methods/page.tsx new file mode 100644 index 0000000..94001e3 --- /dev/null +++ b/src/app/payment-methods/page.tsx @@ -0,0 +1,65 @@ +'use client'; + +import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import FeatureCardSix from '@/components/sections/feature/FeatureCardSix'; +import { CreditCard } from 'lucide-react'; + +export default function PaymentMethods() { + const paymentMethods = [ + { + id: 1, + title: 'iDEAL', + description: 'Dutch online banking payment method. Direct bank transfers with instant confirmation and high security standards.', + imageSrc: '/images/ideal-payment.svg', + }, + { + id: 2, + title: 'PayPal', + description: 'Secure digital wallet solution. Buy and pay online with buyer protection and flexible payment options.', + imageSrc: '/images/paypal-payment.svg', + }, + { + id: 3, + title: 'Mastercard', + description: 'Global credit card payment method. Fast, secure transactions with fraud protection and rewards.', + imageSrc: '/images/mastercard-payment.svg', + }, + ]; + + return ( + + +
+ +
+
+ ); +} \ No newline at end of file