source: chapterx-frontend/src/components/layout/Footer.tsx@ 0b502c2

main
Last change on this file since 0b502c2 was 0b502c2, checked in by kikisrbinoska <srbinoskakristina07@…>, 12 days ago

Fixed user profile and reading lists

  • Property mode set to 100644
File size: 2.2 KB
Line 
1import React from 'react'
2import { Link } from 'react-router-dom'
3import { Feather } from 'lucide-react'
4
5export const Footer: React.FC = () => (
6 <footer className="border-t border-slate-800 mt-auto">
7 <div className="max-w-7xl mx-auto px-4 py-10">
8 <div className="grid grid-cols-1 md:grid-cols-4 gap-8 mb-8">
9 <div className="col-span-1">
10 <Link to="/" className="flex items-center gap-2 mb-3">
11 <div className="w-7 h-7 rounded-lg bg-gradient-to-br from-indigo-500 to-violet-600 flex items-center justify-center">
12 <Feather size={14} className="text-white" />
13 </div>
14 <span className="font-serif font-bold text-white">ChapterX</span>
15 </Link>
16 </div>
17 <div>
18 <h4 className="text-white text-sm font-medium mb-3">Explore</h4>
19 <ul className="space-y-2 text-slate-500 text-sm">
20 <li><Link to="/browse" className="hover:text-white transition-colors">Browse Stories</Link></li>
21 <li><Link to="/genres" className="hover:text-white transition-colors">Genres</Link></li>
22 <li><Link to="/community-lists" className="hover:text-white transition-colors">Reading Lists</Link></li>
23 </ul>
24 </div>
25 <div>
26 <h4 className="text-white text-sm font-medium mb-3">Create</h4>
27 <ul className="space-y-2 text-slate-500 text-sm">
28 <li><Link to="/register" className="hover:text-white transition-colors">Start Writing</Link></li>
29 <li><Link to="/writer" className="hover:text-white transition-colors">Writer Dashboard</Link></li>
30 </ul>
31 </div>
32 <div>
33 <h4 className="text-white text-sm font-medium mb-3">Account</h4>
34 <ul className="space-y-2 text-slate-500 text-sm">
35 <li><Link to="/login" className="hover:text-white transition-colors">Sign In</Link></li>
36 <li><Link to="/register" className="hover:text-white transition-colors">Register</Link></li>
37 </ul>
38 </div>
39 </div>
40 <div className="border-t border-slate-800 pt-6 text-center text-slate-600 text-sm">
41 &copy; {new Date().getFullYear()} ChapterX. All rights reserved.
42 </div>
43 </div>
44 </footer>
45)
Note: See TracBrowser for help on using the repository browser.