18 lines
517 B
JavaScript
18 lines
517 B
JavaScript
import Link from './Link'
|
|
import siteMetadata from '@/data/siteMetadata'
|
|
import SocialIcon from '@/components/social-icons'
|
|
|
|
export default function Footer() {
|
|
return (
|
|
<footer>
|
|
<div className="flex flex-col items-center mt-16">
|
|
<div className="flex mb-2 space-x-2 text-sm text-gray-500 dark:text-gray-400">
|
|
<div>{`© ${new Date().getFullYear()}`}</div>
|
|
<div>{` • `}</div>
|
|
<Link href="/">{siteMetadata.author}</Link>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
)
|
|
}
|