tyndale-ai-frontend/src/components/landing/LandingFooter.tsx

32 lines
1.1 KiB
TypeScript

const LandingFooter = () => {
return (
<footer className="bg-gray-900 text-gray-400 py-12">
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div className="flex flex-col md:flex-row items-center justify-between">
<div className="mb-4 md:mb-0">
<span className="text-2xl font-display font-bold bg-gradient-to-r from-blue-400 to-purple-400 bg-clip-text text-transparent">
Woolnoth, LLC
</span>
<p className="text-sm mt-2">Algorithmic Trading Intelligence</p>
</div>
<div className="flex items-center space-x-6">
<a href="#" className="hover:text-white transition-colors">
Privacy Policy
</a>
<a href="#" className="hover:text-white transition-colors">
Terms of Service
</a>
</div>
</div>
<div className="mt-8 pt-8 border-t border-gray-800 text-center text-sm">
<p>&copy; 2026 Woolnoth, LLC. All rights reserved.</p>
</div>
</div>
</footer>
)
}
export default LandingFooter