export default function SumonNetPointPortal() { const services = [ "Mobile Recharge", "DTH Recharge", "Electricity Bill", "PAN Card", "Voter Card", "Aadhaar Service", "Money Transfer", "eBook Sales" ]; const customers = [ { name: "Rahul Das", mobile: "9883457881", service: "Mobile Recharge", amount: "299", status: "Pending" }, { name: "Sourav Mondal", mobile: "7501460663", service: "Electricity Bill", amount: "1250", status: "Paid" } ]; return (

Sumon Net Point Portal

Recharge • Bill Payment • Digital Services • Customer Tracking

Today Recharge

₹8,540

Pending Bills

12

Customers

240

Alerts

3

Services

{services.map((service, index) => ( ))}

Customer Search

Name: Rahul Das

Mobile: 9883457881

Last Recharge: ₹299

Status: Pending

Customer Records

{customers.map((customer, index) => ( ))}
Name Mobile Service Amount Status Action
{customer.name} {customer.mobile} {customer.service} ₹{customer.amount} {customer.status}

Voice Alert System

⚠️ Alert: If customer payment is pending for 48 hours, voice alert and SMS reminder will trigger automatically.
); }