feat: enhance merchant panel with balance breakdown, payout history, and security improvements

This commit is contained in:
mstfyldz
2026-03-13 05:22:24 +03:00
parent 641498957c
commit d7bd2afc29
5 changed files with 382 additions and 62 deletions

View File

@@ -10,7 +10,8 @@ import {
Terminal,
Building2,
ShieldCheck,
LogOut
LogOut,
Wallet
} from 'lucide-react';
export default function MerchantSidebar({ merchantId }: { merchantId: string }) {
@@ -34,6 +35,7 @@ export default function MerchantSidebar({ merchantId }: { merchantId: string })
const navItems = [
{ label: 'Panel', icon: LayoutDashboard, href: `/merchant/${merchantId}` },
{ label: 'İşlemler', icon: CreditCard, href: `/merchant/${merchantId}/transactions` },
{ label: 'Ödemeler', icon: Wallet, href: `/merchant/${merchantId}/payouts` },
{ label: 'Entegrasyon', icon: Terminal, href: `/merchant/${merchantId}/integration` },
];