diff --git a/components/dashboard/overview-cards.tsx b/components/dashboard/overview-cards.tsx index 2a7e57d..52acd4e 100644 --- a/components/dashboard/overview-cards.tsx +++ b/components/dashboard/overview-cards.tsx @@ -48,7 +48,7 @@ export function OverviewCards({ data }: OverviewCardsProps) {
- + Solde Total @@ -56,10 +56,10 @@ export function OverviewCards({ data }: OverviewCardsProps) {
- +
= 0 ? "text-emerald-600 dark:text-emerald-400" : "text-red-600 dark:text-red-400", @@ -75,7 +75,7 @@ export function OverviewCards({ data }: OverviewCardsProps) {
- + Revenus du mois @@ -83,8 +83,8 @@ export function OverviewCards({ data }: OverviewCardsProps) {
- -
+ +
{formatCurrency(income)}

@@ -98,7 +98,7 @@ export function OverviewCards({ data }: OverviewCardsProps) {

- + Dépenses du mois @@ -106,8 +106,8 @@ export function OverviewCards({ data }: OverviewCardsProps) {
- -
+ +
{formatCurrency(expenses)}

@@ -121,7 +121,7 @@ export function OverviewCards({ data }: OverviewCardsProps) {

- + Pointage @@ -129,8 +129,8 @@ export function OverviewCards({ data }: OverviewCardsProps) {
- -
+ +
{reconciledPercent}%

diff --git a/components/dashboard/recent-transactions.tsx b/components/dashboard/recent-transactions.tsx index 0845c76..10ca400 100644 --- a/components/dashboard/recent-transactions.tsx +++ b/components/dashboard/recent-transactions.tsx @@ -2,7 +2,6 @@ import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; import { Badge } from "@/components/ui/badge"; -import { CheckCircle2, Circle } from "lucide-react"; import { CategoryIcon } from "@/components/ui/category-icon"; import type { BankingData } from "@/lib/types"; import { cn } from "@/lib/utils"; @@ -80,26 +79,14 @@ export function RecentTransactions({ data }: RecentTransactionsProps) { className="group rounded-2xl bg-gradient-to-r from-muted/50 via-muted/30 to-muted/20 hover:from-muted/70 hover:via-muted/50 hover:to-muted/40 border-2 border-border/40 hover:border-primary/30 transition-all duration-300 overflow-hidden hover:shadow-lg hover:shadow-primary/10 hover:scale-[1.02] backdrop-blur-sm" >

-
- {transaction.isReconciled ? ( -
- -
- ) : ( -
- -
- )} -
-
-

+

{transaction.description}

= 0 ? "text-emerald-600 dark:text-emerald-400" : "text-red-600 dark:text-red-400", @@ -141,7 +128,7 @@ export function RecentTransactions({ data }: RecentTransactionsProps) {