'use client'; import React, { useState } from 'react'; import PageTitle from '@/components/ui/PageTitle'; import { Input, Radio, Typography } from 'antd'; import Link from 'next/link'; const { Text } = Typography; const Wallet: React.FC = () => { const [amount, setAmount] = useState(''); const [autoRenew, setAutoRenew] = useState(false); return (
{/* 1. Top Section: Title + History */}

Current Balance

Transaction History
{/* 2. RM Input */}
setAmount(e.target.value)} prefix="RM" size="large" />
setAutoRenew(e.target.checked)} />
Auto-Renew Subscription

Enable monthly or yearly auto payment using wallet.

{/* 4. Current Plan */}

Current Plan: Premium (RM25/Month)

); }; export default Wallet;