| 1 | import React from 'react'
|
|---|
| 2 | import { Link } from 'react-router-dom'
|
|---|
| 3 | import { Feather } from 'lucide-react'
|
|---|
| 4 |
|
|---|
| 5 | export 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 | <p className="text-slate-500 text-sm">
|
|---|
| 17 | A collaborative storytelling platform for writers and readers.
|
|---|
| 18 | </p>
|
|---|
| 19 | </div>
|
|---|
| 20 | <div>
|
|---|
| 21 | <h4 className="text-white text-sm font-medium mb-3">Explore</h4>
|
|---|
| 22 | <ul className="space-y-2 text-slate-500 text-sm">
|
|---|
| 23 | <li><Link to="/browse" className="hover:text-white transition-colors">Browse Stories</Link></li>
|
|---|
| 24 | <li><Link to="/genres" className="hover:text-white transition-colors">Genres</Link></li>
|
|---|
| 25 | <li><Link to="/community-lists" className="hover:text-white transition-colors">Reading Lists</Link></li>
|
|---|
| 26 | </ul>
|
|---|
| 27 | </div>
|
|---|
| 28 | <div>
|
|---|
| 29 | <h4 className="text-white text-sm font-medium mb-3">Create</h4>
|
|---|
| 30 | <ul className="space-y-2 text-slate-500 text-sm">
|
|---|
| 31 | <li><Link to="/register" className="hover:text-white transition-colors">Start Writing</Link></li>
|
|---|
| 32 | <li><Link to="/writer" className="hover:text-white transition-colors">Writer Dashboard</Link></li>
|
|---|
| 33 | </ul>
|
|---|
| 34 | </div>
|
|---|
| 35 | <div>
|
|---|
| 36 | <h4 className="text-white text-sm font-medium mb-3">Account</h4>
|
|---|
| 37 | <ul className="space-y-2 text-slate-500 text-sm">
|
|---|
| 38 | <li><Link to="/login" className="hover:text-white transition-colors">Sign In</Link></li>
|
|---|
| 39 | <li><Link to="/register" className="hover:text-white transition-colors">Register</Link></li>
|
|---|
| 40 | </ul>
|
|---|
| 41 | </div>
|
|---|
| 42 | </div>
|
|---|
| 43 | <div className="border-t border-slate-800 pt-6 text-center text-slate-600 text-sm">
|
|---|
| 44 | © {new Date().getFullYear()} ChapterX. All rights reserved.
|
|---|
| 45 | </div>
|
|---|
| 46 | </div>
|
|---|
| 47 | </footer>
|
|---|
| 48 | )
|
|---|