37 lines
1.0 KiB
JavaScript
37 lines
1.0 KiB
JavaScript
import Link from 'next/link'
|
|
|
|
import { Container } from '../components/Container'
|
|
|
|
function NavLink({ href, children }) {
|
|
return (
|
|
<Link
|
|
href={href}
|
|
className="transition hover:text-teal-500 dark:hover:text-teal-400"
|
|
>
|
|
{children}
|
|
</Link>
|
|
)
|
|
}
|
|
|
|
export function Footer() {
|
|
return (
|
|
<footer className="mt-32">
|
|
<Container.Outer>
|
|
<div className="border-t border-zinc-100 pb-16 pt-10 dark:border-zinc-700/40">
|
|
<Container.Inner>
|
|
<div className="flex flex-col items-center justify-between gap-6 sm:flex-row">
|
|
<p className="text-sm font-medium text-zinc-800 dark:text-zinc-200">
|
|
Built with <a href='https://portaljs.org'>PortalJS 🌀</a>
|
|
</p>
|
|
<p className="text-sm text-zinc-400 dark:text-zinc-500">
|
|
© {new Date().getFullYear()} Leon Derczynski. All rights
|
|
reserved.
|
|
</p>
|
|
</div>
|
|
</Container.Inner>
|
|
</div>
|
|
</Container.Outer>
|
|
</footer>
|
|
)
|
|
}
|