Skip to content

Commit 3ae430d

Browse files
committed
fix: remove BarChart2 references and add SQL Ball logo to dashboard
1 parent 8ccc88a commit 3ae430d

5 files changed

Lines changed: 3 additions & 39 deletions

File tree

Binary file not shown.

public/football.svg

Lines changed: 0 additions & 32 deletions
This file was deleted.

public/sqlballlogo.svg

Lines changed: 1 addition & 0 deletions
Loading

public/vite.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/components/Dashboard.svelte

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -161,10 +161,6 @@
161161
}
162162
}
163163
164-
// Update query count
165-
const savedCount = localStorage.getItem('query_count');
166-
queriesExecuted.set(savedCount ? parseInt(savedCount) : 0);
167-
168164
} catch (err) {
169165
console.error('Dashboard error:', err);
170166
// Try fallback to direct Supabase if API fails
@@ -489,7 +485,7 @@
489485
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-4">
490486
<div class="text-center p-4 bg-slate-50 dark:bg-slate-800/50 rounded-lg">
491487
<div class="w-10 h-10 bg-blue-100 dark:bg-blue-900/30 rounded-lg mx-auto mb-3 flex items-center justify-center">
492-
<BarChart2 class="w-5 h-5 text-blue-600" />
488+
<Zap class="w-5 h-5 text-blue-600" />
493489
</div>
494490
<h4 class="font-semibold text-sm mb-1">RAG System</h4>
495491
<p class="text-xs text-slate-600 dark:text-slate-400">Natural language to SQL</p>
@@ -532,7 +528,7 @@
532528
{/if}
533529

534530
<h2 class="text-2xl font-bold text-slate-800 dark:text-green-400 mb-6 flex items-center gap-3">
535-
<BarChart2 class="w-8 h-8 text-green-500" />
531+
<img src="/sqlballlogo.svg" alt="SQL Ball Logo" class="w-8 h-8" />
536532
European League Analytics
537533
</h2>
538534
<EnhancedVisualizations

0 commit comments

Comments
 (0)