123 lines
4.9 KiB
JavaScript
123 lines
4.9 KiB
JavaScript
import React from 'react';
|
|
import { Link } from 'react-router-dom';
|
|
import { Calendar, Users, User, BookOpen, FileText, DollarSign, Scale } from 'lucide-react';
|
|
|
|
const MemberFooter = () => {
|
|
return (
|
|
<footer className="bg-brand-dark-lavender text-white mt-auto">
|
|
<div className="max-w-7xl mx-auto px-6 py-12">
|
|
<div className="grid md:grid-cols-4 gap-8">
|
|
{/* Logo & About */}
|
|
<div>
|
|
<h3 className="text-2xl font-bold mb-4" style={{ fontFamily: "'Inter', sans-serif" }}>
|
|
LOAF
|
|
</h3>
|
|
<p className="text-gray-300 text-sm" style={{ fontFamily: "'Nunito Sans', sans-serif" }}>
|
|
Lesbian Organization of Atlanta Family
|
|
</p>
|
|
</div>
|
|
|
|
{/* Member Resources */}
|
|
<div>
|
|
<h4 className="font-semibold mb-4" style={{ fontFamily: "'Inter', sans-serif" }}>
|
|
Member Resources
|
|
</h4>
|
|
<ul className="space-y-2 text-sm" style={{ fontFamily: "'Nunito Sans', sans-serif" }}>
|
|
<li>
|
|
<Link to="/members/calendar" className="text-gray-300 hover:text-white flex items-center gap-2 transition-colors">
|
|
<Calendar className="h-4 w-4" />
|
|
Event Calendar
|
|
</Link>
|
|
</li>
|
|
<li>
|
|
<Link to="/members/directory" className="text-gray-300 hover:text-white flex items-center gap-2 transition-colors">
|
|
<Users className="h-4 w-4" />
|
|
Members Directory
|
|
</Link>
|
|
</li>
|
|
<li>
|
|
<Link to="/members/profile" className="text-gray-300 hover:text-white flex items-center gap-2 transition-colors">
|
|
<User className="h-4 w-4" />
|
|
My Profile
|
|
</Link>
|
|
</li>
|
|
<li>
|
|
<Link to="/events" className="text-gray-300 hover:text-white flex items-center gap-2 transition-colors">
|
|
<BookOpen className="h-4 w-4" />
|
|
Events
|
|
</Link>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
{/* Documents */}
|
|
<div>
|
|
<h4 className="font-semibold mb-4" style={{ fontFamily: "'Inter', sans-serif" }}>
|
|
Documents
|
|
</h4>
|
|
<ul className="space-y-2 text-sm" style={{ fontFamily: "'Nunito Sans', sans-serif" }}>
|
|
<li>
|
|
<Link to="/members/newsletters" className="text-gray-300 hover:text-white flex items-center gap-2 transition-colors">
|
|
<FileText className="h-4 w-4" />
|
|
Newsletters
|
|
</Link>
|
|
</li>
|
|
<li>
|
|
<Link to="/members/financials" className="text-gray-300 hover:text-white flex items-center gap-2 transition-colors">
|
|
<DollarSign className="h-4 w-4" />
|
|
Financial Reports
|
|
</Link>
|
|
</li>
|
|
<li>
|
|
<Link to="/members/bylaws" className="text-gray-300 hover:text-white flex items-center gap-2 transition-colors">
|
|
<Scale className="h-4 w-4" />
|
|
Bylaws
|
|
</Link>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
{/* Support */}
|
|
<div>
|
|
<h4 className="font-semibold mb-4" style={{ fontFamily: "'Inter', sans-serif" }}>
|
|
Support
|
|
</h4>
|
|
<ul className="space-y-2 text-sm" style={{ fontFamily: "'Nunito Sans', sans-serif" }}>
|
|
<li>
|
|
<Link to="/profile" className="text-gray-300 hover:text-white transition-colors">
|
|
Account Settings
|
|
</Link>
|
|
</li>
|
|
<li>
|
|
<a href="/membership/contact-us" className="text-gray-300 hover:text-white transition-colors">
|
|
Contact Us
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a href="/membership/donate" className="text-gray-300 hover:text-white transition-colors">
|
|
Donate
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Bottom Bar */}
|
|
<div className="border-t border-[var(--purple-lavender)]">
|
|
<div className="max-w-7xl mx-auto px-6 py-4">
|
|
<div className="flex flex-col md:flex-row justify-between items-center gap-4 text-sm text-gray-300" style={{ fontFamily: "'Nunito Sans', sans-serif" }}>
|
|
<div className="flex gap-6">
|
|
<a href="/membership/terms-of-service" className="hover:text-white transition-colors">Terms of Service</a>
|
|
<a href="/membership/privacy-policy" className="hover:text-white transition-colors">Privacy Policy</a>
|
|
</div>
|
|
<p>© {new Date().getFullYear()} LOAF. All rights reserved.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
);
|
|
};
|
|
|
|
export default MemberFooter;
|