"use client" import { useState } from "react" const methods = [ { id: "telebirr", name: "Telebirr", icon: "๐Ÿ“ฑ", desc: "Ethiopian mobile payment" }, { id: "cbe", name: "CBE Birr", icon: "๐Ÿฆ", desc: "Commercial Bank of Ethiopia" }, { id: "awash", name: "Awash Bank", icon: "๐Ÿ›๏ธ", desc: "Awash Bank transfer" }, { id: "abyssinia", name: "Bank of Abyssinia", icon: "๐Ÿ’ณ", desc: "Bank of Abyssinia" }, ] const quickAmounts = [50, 100, 200, 500, 1000, 2000] export default function DepositPage() { const [method, setMethod] = useState("telebirr") const [amount, setAmount] = useState("") return (

Deposit

Add funds to your account

{/* Balance */}
Current Balance 0.00 ETB
{/* Payment methods */}
{methods.map((m) => ( ))}
{/* Amount */}
setAmount(e.target.value)} placeholder="Enter amount" className="w-full bg-input border border-border rounded px-3 py-2 text-sm text-foreground placeholder:text-muted-foreground focus:outline-none focus:border-primary" min="50" />
{quickAmounts.map((a) => ( ))}

Min deposit: 50 ETB ยท Max deposit: 50,000 ETB

) }