TradingAgents/frontend/components/layout/Footer.tsx

43 lines
1.4 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* Footer component
*/
export function Footer() {
return (
<footer className="border-t bg-gray-50 dark:bg-gray-900">
<div className="container mx-auto px-4 py-6">
<div className="flex flex-col md:flex-row items-center justify-between gap-4">
<div className="text-sm text-gray-600 dark:text-gray-400">
© 2025 TradingAgents. {" "}
<a
href="https://github.com/TauricResearch"
target="_blank"
rel="noopener noreferrer"
className="text-blue-600 hover:underline"
>
Tauric Research
</a>
</div>
<div className="flex gap-4 text-sm">
<a
href="https://github.com/TauricResearch/TradingAgents"
target="_blank"
rel="noopener noreferrer"
className="text-gray-600 hover:text-blue-600 dark:text-gray-400 dark:hover:text-blue-400"
>
GitHub
</a>
<a
href="https://arxiv.org/abs/2412.20138"
target="_blank"
rel="noopener noreferrer"
className="text-gray-600 hover:text-blue-600 dark:text-gray-400 dark:hover:text-blue-400"
>
</a>
</div>
</div>
</div>
</footer>
);
}