followgraph / components /Footer.tsx
severo's picture
severo HF staff
copy files
b369d17
raw
history blame
1.54 kB
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&nbsp;
<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>
)
}