From 88aedc9d7b719144ea30f908cb4e12bdb0b7b2b4 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 09:38:05 +0000 Subject: [PATCH] Switch to version 1: remove src/app/payment-methods/page.tsx --- src/app/payment-methods/page.tsx | 70 -------------------------------- 1 file changed, 70 deletions(-) delete mode 100644 src/app/payment-methods/page.tsx 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 ( - - - -
- -
-
-
- ); -}