linter config, icons, fix stats
Some checks failed
Lint / Lint and Check (push) Failing after 47s

This commit is contained in:
2025-07-15 19:34:28 +02:00
parent d69d9fc129
commit 5d9eb9217e
6 changed files with 330 additions and 266 deletions

View File

@@ -14,8 +14,10 @@ import {
Target,
Copy,
Check,
Trophy,
HeartCrack,
} from 'lucide-react';
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card';
import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card';
import { Button } from '@/components/ui/button';
import { Input } from '@/components/ui/input';
import { Label } from '@/components/ui/label';
@@ -150,9 +152,9 @@ export default function Dashboard() {
const getHabitIcon = (type: string) => {
switch (type) {
case 'positive':
return <TrendingUp className="h-5 w-5 text-emerald-500" />;
return <Trophy className="h-5 w-5 text-emerald-500" />;
case 'negative':
return <TrendingDown className="h-5 w-5 text-red-500" />;
return <HeartCrack className="h-5 w-5 text-red-500" />;
default:
return <Activity className="h-5 w-5 text-zinc-500" />;
}