Spaces:
Sleeping
Sleeping
File size: 3,304 Bytes
e3362fc 3f49a1b 09a0ef4 e3362fc 3f49a1b e3362fc 3f49a1b e3362fc 3f49a1b e3362fc 3f49a1b e3362fc 09a0ef4 e3362fc 09a0ef4 e3362fc | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | import Link from 'next/link';
import { Mail, Globe, Hash, Users } from 'lucide-react';
export default function Footer() {
return (
<footer className="bg-[#050505] border-t border-white/5 pt-16 pb-8 mt-24">
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div className="grid grid-cols-1 md:grid-cols-4 gap-12 mb-12">
<div className="col-span-1 md:col-span-1">
<div className="flex items-center gap-2 mb-6">
<img src="/logo.svg" alt="VocalBee Logo" className="w-8 h-8" />
<span className="font-bold text-white text-xl tracking-tight">VocalBee</span>
</div>
<p className="text-gray-400 text-sm leading-relaxed max-w-xs">
Next-generation AI audio separation. Extract pristine vocals and stems from any track instantly.
</p>
</div>
<div>
<h4 className="font-bold text-white mb-6">Product</h4>
<ul className="space-y-4">
<li><a href="#" className="text-gray-400 hover:text-[#1877F2] transition-colors text-sm">Features</a></li>
<li><a href="#" className="text-gray-400 hover:text-[#1877F2] transition-colors text-sm">Pricing</a></li>
<li><a href="#" className="text-gray-400 hover:text-[#1877F2] transition-colors text-sm">API</a></li>
<li><a href="#" className="text-gray-400 hover:text-[#1877F2] transition-colors text-sm">Integrations</a></li>
</ul>
</div>
<div>
<h4 className="font-bold text-white mb-6">Resources</h4>
<ul className="space-y-4">
<li><a href="#" className="text-gray-400 hover:text-[#1877F2] transition-colors text-sm">Documentation</a></li>
<li><a href="#" className="text-gray-400 hover:text-[#1877F2] transition-colors text-sm">Tutorials</a></li>
<li><a href="#" className="text-gray-400 hover:text-[#1877F2] transition-colors text-sm">Blog</a></li>
<li><a href="#" className="text-gray-400 hover:text-[#1877F2] transition-colors text-sm">Community</a></li>
</ul>
</div>
<div>
<h4 className="font-bold text-white mb-6">Company</h4>
<ul className="space-y-4">
<li><a href="#" className="text-gray-400 hover:text-[#1877F2] transition-colors text-sm">About Us</a></li>
<li><a href="#" className="text-gray-400 hover:text-[#1877F2] transition-colors text-sm">Careers</a></li>
<li><a href="#" className="text-gray-400 hover:text-[#1877F2] transition-colors text-sm">Privacy Policy</a></li>
<li><a href="#" className="text-gray-400 hover:text-[#1877F2] transition-colors text-sm">Terms of Service</a></li>
</ul>
</div>
</div>
<div className="border-t border-[#27272a] pt-8 flex flex-col md:flex-row items-center justify-between">
<p className="text-gray-500 text-sm">
© {new Date().getFullYear()} VocalBee. All rights reserved.
</p>
<div className="flex gap-6">
<span className="text-gray-500 text-sm">Status: All systems operational</span>
</div>
</div>
</div>
</footer>
);
}
|