mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-06-28 12:16:53 +00:00
77 lines
2.6 KiB
TypeScript
77 lines
2.6 KiB
TypeScript
import Link from "next/link"
|
|
import { Facebook, Twitter, Instagram, Linkedin } from "lucide-react"
|
|
|
|
export default function Footer() {
|
|
return (
|
|
<footer className="bg-gray-900 text-white py-12">
|
|
<div className="container mx-auto grid grid-cols-1 md:grid-cols-4 gap-8">
|
|
<div>
|
|
<h3 className="text-lg font-semibold mb-4">StreamLine</h3>
|
|
<p className="text-gray-400">Streamlining your workflow, one task at a time.</p>
|
|
</div>
|
|
<div>
|
|
<h4 className="text-lg font-semibold mb-4">Product</h4>
|
|
<ul className="space-y-2">
|
|
<li>
|
|
<Link href="#features" className="text-gray-400 hover:text-white">
|
|
Features
|
|
</Link>
|
|
</li>
|
|
<li>
|
|
<Link href="#pricing" className="text-gray-400 hover:text-white">
|
|
Pricing
|
|
</Link>
|
|
</li>
|
|
<li>
|
|
<Link href="#" className="text-gray-400 hover:text-white">
|
|
Integrations
|
|
</Link>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<div>
|
|
<h4 className="text-lg font-semibold mb-4">Company</h4>
|
|
<ul className="space-y-2">
|
|
<li>
|
|
<Link href="#" className="text-gray-400 hover:text-white">
|
|
About Us
|
|
</Link>
|
|
</li>
|
|
<li>
|
|
<Link href="#" className="text-gray-400 hover:text-white">
|
|
Careers
|
|
</Link>
|
|
</li>
|
|
<li>
|
|
<Link href="#" className="text-gray-400 hover:text-white">
|
|
Contact
|
|
</Link>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<div>
|
|
<h4 className="text-lg font-semibold mb-4">Connect</h4>
|
|
<div className="flex space-x-4">
|
|
<Link href="#" className="text-gray-400 hover:text-white">
|
|
<Facebook className="h-6 w-6" />
|
|
</Link>
|
|
<Link href="#" className="text-gray-400 hover:text-white">
|
|
<Twitter className="h-6 w-6" />
|
|
</Link>
|
|
<Link href="#" className="text-gray-400 hover:text-white">
|
|
<Instagram className="h-6 w-6" />
|
|
</Link>
|
|
<Link href="#" className="text-gray-400 hover:text-white">
|
|
<Linkedin className="h-6 w-6" />
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className="container mx-auto mt-8 pt-8 border-t border-gray-800 text-center text-gray-400">
|
|
<p>© 2025 StreamLine. All rights reserved.</p>
|
|
</div>
|
|
</footer>
|
|
)
|
|
}
|
|
|