59 lines
2.8 KiB
TypeScript
59 lines
2.8 KiB
TypeScript
import React from 'react';
|
|
import { Activity, Twitter, Instagram, Github } from 'lucide-react';
|
|
|
|
export const Footer: React.FC = () => {
|
|
return (
|
|
<footer className="bg-surface border-t border-white/5 pt-16 pb-8">
|
|
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
|
<div className="grid grid-cols-2 md:grid-cols-4 gap-8 mb-12">
|
|
<div className="col-span-2 md:col-span-1">
|
|
<div className="flex items-center gap-2 mb-4">
|
|
<Activity className="text-primary-500 w-6 h-6" />
|
|
<span className="text-xl font-bold text-white">FitMate</span>
|
|
</div>
|
|
<p className="text-gray-500 text-sm">
|
|
The proactive nutrition co-pilot for high performers.
|
|
</p>
|
|
</div>
|
|
|
|
<div>
|
|
<h4 className="text-white font-semibold mb-4">Product</h4>
|
|
<ul className="space-y-2 text-sm text-gray-400">
|
|
<li><a href="#" className="hover:text-primary-400 transition-colors">Features</a></li>
|
|
<li><a href="#" className="hover:text-primary-400 transition-colors">Pricing</a></li>
|
|
<li><a href="#" className="hover:text-primary-400 transition-colors">Methodology</a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div>
|
|
<h4 className="text-white font-semibold mb-4">Company</h4>
|
|
<ul className="space-y-2 text-sm text-gray-400">
|
|
<li><a href="#" className="hover:text-primary-400 transition-colors">About</a></li>
|
|
<li><a href="#" className="hover:text-primary-400 transition-colors">Blog</a></li>
|
|
<li><a href="#" className="hover:text-primary-400 transition-colors">Careers</a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div>
|
|
<h4 className="text-white font-semibold mb-4">Legal</h4>
|
|
<ul className="space-y-2 text-sm text-gray-400">
|
|
<li><a href="#" className="hover:text-primary-400 transition-colors">Privacy</a></li>
|
|
<li><a href="#" className="hover:text-primary-400 transition-colors">Terms</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="border-t border-white/5 pt-8 flex flex-col md:flex-row justify-between items-center gap-4">
|
|
<p className="text-gray-600 text-sm">
|
|
© {new Date().getFullYear()} FitMate Inc. All rights reserved.
|
|
</p>
|
|
<div className="flex gap-6">
|
|
<a href="#" className="text-gray-500 hover:text-white transition-colors"><Twitter size={20} /></a>
|
|
<a href="#" className="text-gray-500 hover:text-white transition-colors"><Instagram size={20} /></a>
|
|
<a href="#" className="text-gray-500 hover:text-white transition-colors"><Github size={20} /></a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
);
|
|
}; |