17 lines
431 B
TypeScript
17 lines
431 B
TypeScript
/**
|
|
* 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 items-center justify-center">
|
|
<div className="text-sm text-gray-600 dark:text-gray-400">
|
|
© 2025 TradingAgentsX. All rights reserved.
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
);
|
|
}
|