Dariky's picture
Upload components/Footer.jsx with huggingface_hub
6e8147f verified
raw
history blame contribute delete
787 Bytes
const Footer = () => (
<footer className="bg-gray-900 py-8 text-white">
<div className="container mx-auto px-4">
<div className="flex flex-col items-center justify-between md:flex-row">
<div className="mb-4 md:mb-0">
<p className="text-sm text-gray-400">
© 2023 Print Modal Demo. All rights reserved.
</p>
</div>
<div className="flex space-x-4">
<a href="#" className="text-gray-400 hover:text-white">
Privacy Policy
</a>
<a href="#" className="text-gray-400 hover:text-white">
Terms of Service
</a>
<a href="#" className="text-gray-400 hover:text-white">
Support
</a>
</div>
</div>
</div>
</footer>
);