From 67ca5d95413693e6de2a1638e96b3f097fa3bafc Mon Sep 17 00:00:00 2001 From: Srishty M Date: Mon, 15 Apr 2024 06:27:00 +0530 Subject: [PATCH] fix: text decoration and styling --- src/components/payment/Final.jsx | 11 ++++++++--- src/components/payment/Payment.jsx | 9 +++++---- src/data/paymentData.js | 12 ++++++------ 3 files changed, 19 insertions(+), 13 deletions(-) diff --git a/src/components/payment/Final.jsx b/src/components/payment/Final.jsx index d3ae5ae..d83c9a6 100644 --- a/src/components/payment/Final.jsx +++ b/src/components/payment/Final.jsx @@ -49,7 +49,10 @@ function Final() { setisUPI(true); }} style={{ zIndex: 9 }}> - Bank Transaction + {' '} + + Bank Transaction{' '} + @@ -73,7 +78,7 @@ function Final() { /> - + {Contactorg} diff --git a/src/components/payment/Payment.jsx b/src/components/payment/Payment.jsx index d38d2de..c589161 100644 --- a/src/components/payment/Payment.jsx +++ b/src/components/payment/Payment.jsx @@ -8,12 +8,13 @@ export const PaymentCont = () => {
- Preferred method: Transfer funds from your bank to our CURRENT account + Preferred method: Transfer funds from your bank to our CURRENT account
{Paymentdata.map((item, index) => ( - {item} + {item[0]} + {item[1]} ))}
@@ -30,7 +31,7 @@ export const UPI = () => {
{UPIdata.slice(0, 1).map((item, index) => ( - + {item} ))} @@ -40,7 +41,7 @@ export const UPI = () => { className='w-64 h-64 object-cover' /> {UPIdata.slice(1).map((item, index) => ( - + {item} ))} diff --git a/src/data/paymentData.js b/src/data/paymentData.js index 9e2894f..d92769c 100644 --- a/src/data/paymentData.js +++ b/src/data/paymentData.js @@ -1,10 +1,10 @@ export const Paymentdata = [ - 'Bank: State Bank of India', - 'Account name:NIT Rourkela 1998 Alumni', - 'Account number:41728775160(Current Account)', - 'IFSC Code:SBIN0002109', - 'MICR Code:769002007', - 'Branch Code: 002109', + ['Bank: ', 'State Bank of India'], + ['Account name: ', 'NIT Rourkela 1998 Alumni'], + ['Account number: ', '41728775160(Current Account)'], + ['IFSC Code: ', 'SBIN0002109'], + ['MICR Code: ', '769002007'], + ['Branch Code: ', '002109'], ]; export const UPIdata = ['SCAN and PAY', 'NIT ROURKELA 1999 ALUMNI', 'UPI ID:41728775160@SBI'];