[site][s]: refactor front page to tailwind and use new logo.

This commit is contained in:
Rufus Pollock
2021-05-26 20:25:07 +02:00
parent 27187fe02f
commit 6e81d5d707
2 changed files with 56 additions and 43 deletions

View File

@@ -2,14 +2,15 @@ import styles from '../../styles/Home.module.css'
export default function Footer() {
return (
<footer className={styles.footer}>
<footer className="flex items-center justify-center w-full h-24 border-t">
<a
href="https://www.datopian.com/"
className="flex items-center justify-center"
href="https://datopian.com/"
target="_blank"
rel="noopener noreferrer"
>
Built by{' '}
<img src="/datopian-logo.png" alt="Datopian Logo" className={styles.logo} />
<img src="/datopian-logo.png" alt="Datopian Logo" className="h-6 ml-2" />
</a>
</footer>
)