diff --git a/src/app/payment-methods/page.tsx b/src/app/payment-methods/page.tsx deleted file mode 100644 index 9554760..0000000 --- a/src/app/payment-methods/page.tsx +++ /dev/null @@ -1,70 +0,0 @@ -'use client'; - -import { ThemeProvider } from '@/components/theme/ThemeProvider'; -import { ReactLenis } from '@react-three/drei'; -import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -import FeatureCardSix from '@/components/sections/feature/FeatureCardSix'; -import { CreditCard, Landmark, Wallet } from 'lucide-react'; -import Image from 'next/image'; - -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 ( - - - -
- -
-
-
- ); -}