Enhance InvoicesPage with additional button for client management
- Added a secondary button for "Add Client" alongside the "New Invoice" button to improve user functionality and streamline invoice management.
This commit is contained in:
@@ -27,8 +27,11 @@ export default function InvoicesPage() {
|
|||||||
{/* Header */}
|
{/* Header */}
|
||||||
<div className="mb-5 flex items-center justify-between">
|
<div className="mb-5 flex items-center justify-between">
|
||||||
<h1 className="text-xl font-medium">Invoices</h1>
|
<h1 className="text-xl font-medium">Invoices</h1>
|
||||||
|
<div className="flex gap-2">
|
||||||
|
<Button variant="secondary" size="sm">Add Client</Button>
|
||||||
<Button size="sm">New Invoice</Button>
|
<Button size="sm">New Invoice</Button>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
{/* Summary Cards */}
|
{/* Summary Cards */}
|
||||||
<div className="mb-5 grid grid-cols-3 gap-4">
|
<div className="mb-5 grid grid-cols-3 gap-4">
|
||||||
|
|||||||
Reference in New Issue
Block a user