feat: add footer with AI generation attribution to the main application layout.
All checks were successful
Build and Deploy / build (push) Successful in 1m19s

This commit is contained in:
2025-12-17 14:48:49 +01:00
parent 7758b31d6b
commit 4ff2eb0ef0

View File

@@ -89,6 +89,12 @@ export const App: React.FC = () => {
{activeTab === 'tester' && <DeckTester />}
{activeTab === 'bracket' && <TournamentManager />}
</main>
<footer className="bg-slate-900 border-t border-slate-800 p-2 text-center text-xs text-slate-500 shrink-0">
<p>
Entire code generated by <span className="text-purple-400 font-medium">Antigravity</span> and <span className="text-sky-400 font-medium">Gemini Pro</span>
</p>
</footer>
</div>
</ToastProvider>
);