Spaces:
Build error
Build error
Upload components/Footer.jsx with huggingface_hub
Browse files- components/Footer.jsx +24 -0
components/Footer.jsx
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
const Footer = () => (
|
| 2 |
+
<footer className="bg-gray-900 py-8 text-white">
|
| 3 |
+
<div className="container mx-auto px-4">
|
| 4 |
+
<div className="flex flex-col items-center justify-between md:flex-row">
|
| 5 |
+
<div className="mb-4 md:mb-0">
|
| 6 |
+
<p className="text-sm text-gray-400">
|
| 7 |
+
© 2023 Print Modal Demo. All rights reserved.
|
| 8 |
+
</p>
|
| 9 |
+
</div>
|
| 10 |
+
<div className="flex space-x-4">
|
| 11 |
+
<a href="#" className="text-gray-400 hover:text-white">
|
| 12 |
+
Privacy Policy
|
| 13 |
+
</a>
|
| 14 |
+
<a href="#" className="text-gray-400 hover:text-white">
|
| 15 |
+
Terms of Service
|
| 16 |
+
</a>
|
| 17 |
+
<a href="#" className="text-gray-400 hover:text-white">
|
| 18 |
+
Support
|
| 19 |
+
</a>
|
| 20 |
+
</div>
|
| 21 |
+
</div>
|
| 22 |
+
</div>
|
| 23 |
+
</footer>
|
| 24 |
+
);
|