"use client"; import React from 'react'; import { Card, Button, Grid, Title, Text, Container, Box, Image } from '@mantine/core'; import NextImage from "next/image"; import logo from "@/app/image/logo.jpg"; import { IconBan, IconRefresh, IconExchange, IconCreditCard, IconBuildingBank, IconMobiledata, IconWallet, IconTransferIn } from '@tabler/icons-react'; import { IconLogout } from "@tabler/icons-react"; import { useRouter } from "next/navigation"; const options = [ { title: 'Transfer within the bank', subtitle: '₹1 to ₹25 Lacs per day', }, { title: 'IMPS P2A - Instant Transfer', subtitle: '365 days, 24x7', }, { title: 'Transfer to other bank (NEFT)', subtitle: 'Also for Credit Cards', }, { title: 'Transfer to other bank (RTGS)', subtitle: '₹2 Lacs to ₹25 Lacs per day', }, { title: 'IMPS P2P - Instant Transfer', subtitle: '(IMPS: Mobile No.)', }, ]; interface TransactionOptionProps { title: string; description: string; icon: React.ReactNode; } const TransactionOption: React.FC = ({ title, description, icon }) => ( {icon} {title} {description} ); const FundsTransferPage: React.FC = () => { const router = useRouter(); async function handleLogout(e: React.FormEvent) { e.preventDefault(); localStorage.removeItem("access_token"); router.push("/login") } return (
ebanking
{/* @ts-ignore */} Select Transaction Type } icon={} /> } /> } /> } /> } /> © 2025 KCC Bank. All rights reserved. {" "}
); }; export default FundsTransferPage;