[simple-example][m] - make it prettier

This commit is contained in:
Luccas Mateus de Medeiros Gomes
2023-04-27 08:29:06 -03:00
parent 926ae16c35
commit 23fd9524e3
6 changed files with 225 additions and 131 deletions

View File

@@ -0,0 +1,16 @@
export default function Footer() {
return (
<footer className="bg-white">
<div className="mx-auto max-w-7xl overflow-hidden px-6 py-8 sm:py-12 lg:px-8">
<div className="mt-10 flex justify-center space-x-10">
<span className="text-gray-400 hover:text-gray-500 flex gap-4 items-center">
<span className="mt-2">Powered by</span>
<a href="https://datopian.com">
<img src="/logo.png" className="w-32 h-10" />
</a>
</span>
</div>
</div>
</footer>
);
}