Spaces:
Build error
Build error
Upload components/Footer.jsx with huggingface_hub
Browse files- components/Footer.jsx +17 -0
components/Footer.jsx
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
export default function Footer() {
|
| 2 |
+
return (
|
| 3 |
+
<footer className="text-center mt-12 pt-8 border-t border-slate-200">
|
| 4 |
+
<p className="text-slate-600 text-sm">
|
| 5 |
+
Built with{' '}
|
| 6 |
+
<a
|
| 7 |
+
href="https://huggingface.co/spaces/akhaliq/anycoder"
|
| 8 |
+
target="_blank"
|
| 9 |
+
rel="noopener noreferrer"
|
| 10 |
+
className="text-primary-600 font-semibold hover:text-primary-700 transition-colors"
|
| 11 |
+
>
|
| 12 |
+
anycoder
|
| 13 |
+
</a>
|
| 14 |
+
</p>
|
| 15 |
+
</footer>
|
| 16 |
+
);
|
| 17 |
+
}
|