Spaces:
Sleeping
Sleeping
File size: 5,367 Bytes
3328075 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 |
import { Link } from 'react-router-dom';
import { Facebook, Twitter, Instagram, Youtube } from 'lucide-react';
const Footer = () => {
return (
<footer className="bg-[#0f0f0f] border-t border-gray-800">
<div className="container mx-auto px-4 py-12">
<div className="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<Link to="/" className="flex items-center space-x-2">
<span className="text-blue-500 text-xl font-bold">CarFleet</span>
</Link>
<p className="mt-4 text-gray-400 text-sm">
Premium electric vehicle rental and subscription service for the modern driver.
</p>
<div className="mt-6 flex space-x-4">
<a
href="#"
className="text-gray-400 hover:text-white transition-colors"
aria-label="Facebook"
>
<Facebook size={20} />
</a>
<a
href="#"
className="text-gray-400 hover:text-white transition-colors"
aria-label="Twitter"
>
<Twitter size={20} />
</a>
<a
href="#"
className="text-gray-400 hover:text-white transition-colors"
aria-label="Instagram"
>
<Instagram size={20} />
</a>
<a
href="#"
className="text-gray-400 hover:text-white transition-colors"
aria-label="Youtube"
>
<Youtube size={20} />
</a>
</div>
</div>
<div>
<h3 className="text-white font-medium mb-4">Quick Links</h3>
<ul className="space-y-2">
<li>
<Link to="/" className="text-gray-400 hover:text-white transition-colors text-sm">
Home
</Link>
</li>
<li>
<Link to="/about" className="text-gray-400 hover:text-white transition-colors text-sm">
About Us
</Link>
</li>
<li>
<Link to="/vehicles" className="text-gray-400 hover:text-white transition-colors text-sm">
Our Fleet
</Link>
</li>
<li>
<Link to="/pricing" className="text-gray-400 hover:text-white transition-colors text-sm">
Pricing
</Link>
</li>
<li>
<Link to="/contact" className="text-gray-400 hover:text-white transition-colors text-sm">
Contact
</Link>
</li>
</ul>
</div>
<div>
<h3 className="text-white font-medium mb-4">Car Categories</h3>
<ul className="space-y-2">
<li>
<Link to="/vehicles?type=sedan" className="text-gray-400 hover:text-white transition-colors text-sm">
Sedans
</Link>
</li>
<li>
<Link to="/vehicles?type=suv" className="text-gray-400 hover:text-white transition-colors text-sm">
SUVs
</Link>
</li>
<li>
<Link to="/vehicles?type=truck" className="text-gray-400 hover:text-white transition-colors text-sm">
Trucks
</Link>
</li>
<li>
<Link to="/vehicles?type=luxury" className="text-gray-400 hover:text-white transition-colors text-sm">
Luxury
</Link>
</li>
<li>
<Link to="/vehicles?type=sports" className="text-gray-400 hover:text-white transition-colors text-sm">
Sports Cars
</Link>
</li>
</ul>
</div>
<div>
<h3 className="text-white font-medium mb-4">Contact Info</h3>
<ul className="space-y-2">
<li className="text-gray-400 text-sm">123 Main Street, City, CA 94105</li>
<li className="text-gray-400 text-sm">+1 (555) 123-4567</li>
<li>
<a href="mailto:[email protected]" className="text-gray-400 hover:text-white transition-colors text-sm">
[email protected]
</a>
</li>
</ul>
</div>
</div>
<div className="border-t border-gray-800 mt-10 pt-6 flex flex-col md:flex-row justify-between items-center">
<p className="text-gray-500 text-sm">© 2025 CarFleet. All rights reserved.</p>
<div className="flex space-x-6 mt-4 md:mt-0">
<Link to="/terms" className="text-gray-500 hover:text-white transition-colors text-sm">
Terms of Service
</Link>
<Link to="/privacy" className="text-gray-500 hover:text-white transition-colors text-sm">
Privacy Policy
</Link>
<Link to="/faq" className="text-gray-500 hover:text-white transition-colors text-sm">
FAQ
</Link>
</div>
</div>
</div>
</footer>
);
};
export default Footer;
|