footer + blog post

This commit is contained in:
Artur Akmalov
2023-04-26 18:06:26 +05:00
parent 3d14d8de70
commit bbf241c62e
8 changed files with 75 additions and 18 deletions
+7 -8
View File
@@ -1,21 +1,20 @@
import React from 'react'
// import Ichthys from '../svg/ichthys.svg'
import { useSiteMetadata } from '../hooks/use-site-metadata'
export const Footer = () => {
const year = new Date().getFullYear()
// const { biolinkUrl } = useSiteMetadata()
const { githubUrl } = useSiteMetadata()
return (
<footer className="mt-4 flex items-center justify-center gap-2 bg-surface py-6 shadow-inner">
<div>© {year}</div>
{/* <a href={biolinkUrl} className="!no-underline">
Stephen Cavender
</a> */}
<h2 className="text-2xl font-bold">
Footer
</h2>
<a href={githubUrl} className="!no-underline">
Artur Akmalov
</a>
{/* <Ichthys alt="ichthys" className="w-8" /> */}
</footer>
)
}
export default Footer
export default Footer