← back to Sdcc Awards
cypressaward/frontend/components/footer.tsx
64 lines
import Link from 'next/link'
import { Scale } from 'lucide-react'
export function Footer() {
return (
<footer className="bg-gray-900 text-gray-300">
<div className="container mx-auto px-4 py-12">
<div className="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<div className="flex items-center space-x-2 mb-4">
<Scale className="h-6 w-6 text-blue-400" />
<span className="text-xl font-bold text-white">Cy Pres Platform</span>
</div>
<p className="text-sm">
Connecting nonprofits with cy pres opportunities from class action settlements.
</p>
</div>
<div>
<h3 className="text-white font-semibold mb-4">For Nonprofits</h3>
<ul className="space-y-2 text-sm">
<li><Link href="/nonprofit/register" className="hover:text-white">Register Your Organization</Link></li>
<li><Link href="/cases" className="hover:text-white">Browse Opportunities</Link></li>
<li><Link href="/resources/nonprofits" className="hover:text-white">Resources & Guides</Link></li>
<li><Link href="/success-stories" className="hover:text-white">Success Stories</Link></li>
</ul>
</div>
<div>
<h3 className="text-white font-semibold mb-4">For Law Firms</h3>
<ul className="space-y-2 text-sm">
<li><Link href="/law-firm/register" className="hover:text-white">Join as a Firm</Link></li>
<li><Link href="/law-firm/post-intake" className="hover:text-white">Post an Intake</Link></li>
<li><Link href="/nonprofits/search" className="hover:text-white">Find Nonprofits</Link></li>
<li><Link href="/resources/law-firms" className="hover:text-white">Best Practices</Link></li>
</ul>
</div>
<div>
<h3 className="text-white font-semibold mb-4">Legal</h3>
<ul className="space-y-2 text-sm">
<li><Link href="/privacy" className="hover:text-white">Privacy Policy</Link></li>
<li><Link href="/terms" className="hover:text-white">Terms of Service</Link></li>
<li><Link href="/disclaimer" className="hover:text-white">Legal Disclaimer</Link></li>
<li><Link href="/contact" className="hover:text-white">Contact Us</Link></li>
</ul>
</div>
</div>
<div className="border-t border-gray-800 mt-8 pt-8">
<div className="flex flex-col md:flex-row justify-between items-center">
<p className="text-sm text-gray-400">
© 2024 Cy Pres Award Platform. All rights reserved.
</p>
<div className="mt-4 md:mt-0 bg-yellow-900/50 text-yellow-200 px-4 py-2 rounded text-xs">
<strong>Disclaimer:</strong> This platform does not provide legal advice.
Cy pres awards are determined by courts on a case-by-case basis.
</div>
</div>
</div>
</div>
</footer>
)
}