Spaces:
Sleeping
Sleeping
File size: 1,538 Bytes
b369d17 |
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 |
import Link from 'next/link'
import React from 'react'
export default function Footer({}) {
return (
<footer className="bg-white dark:bg-gray-800">
<div className="max-w-screen-xl p-4 py-6 mx-auto lg:py-16 md:p-8 lg:p-10">
<hr className="my-6 border-gray-200 sm:mx-auto dark:border-gray-700 lg:my-8" />
<div className="text-center">
<div className="mb-5 lg:text-2xl font-semibold text-gray-700 dark:text-white text-lg">
Followgraph for Hugging Face, forked from
<Link
href="https://github.com/gabipurcaru/followgraph"
target="_blank"
rel="noreferrer"
className="font-bold text-gray-900 dark:text-gray-400"
>
gabipurcaru/followgraph
</Link>
</div>
<span className="block text-sm text-center text-gray-500 dark:text-gray-400">
Built with{' '}
<Link
href="https://flowbite.com"
className="text-purple-600 hover:underline dark:text-purple-500"
rel="nofollow noopener noreferrer"
>
Flowbite
</Link>{' '}
and{' '}
<Link
href="https://tailwindcss.com"
className="text-purple-600 hover:underline dark:text-purple-500"
rel="nofollow noopener noreferrer"
>
Tailwind CSS
</Link>
.
</span>
</div>
</div>
</footer>
)
}
|