Updated site icons and added resume to about
This commit is contained in:
@ -17,6 +17,7 @@ export default function Footer() {
|
||||
<SocialIcon kind="instagram" href={siteMetadata.instagram} size={6} />
|
||||
<SocialIcon kind="threads" href={siteMetadata.threads} size={6} />
|
||||
<SocialIcon kind="medium" href={siteMetadata.medium} size={6} />
|
||||
<SocialIcon kind="resume" href={siteMetadata.resume} size={6} />
|
||||
</div>
|
||||
<div className="mb-2 flex space-x-2 text-sm text-gray-500 dark:text-gray-400">
|
||||
<div>{siteMetadata.author}</div>
|
||||
@ -26,7 +27,7 @@ export default function Footer() {
|
||||
<Link href="/">{siteMetadata.title}</Link>
|
||||
</div>
|
||||
<div className="mb-8 text-sm text-gray-500 dark:text-gray-400">
|
||||
<Link href="https://github.com/timlrx/tailwind-nextjs-starter-blog">Theme</Link>
|
||||
<Link href="https://git.jonb.io/jblu/jonbio">Theme</Link>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
@ -102,3 +102,12 @@ export function Medium(svgProps: SVGProps<SVGSVGElement>) {
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
|
||||
export function Resume(svgProps: SVGProps<SVGSVGElement>) {
|
||||
return (
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...svgProps}>
|
||||
<title>Resume</title>
|
||||
<path d="M14.727 6.727H14V0H4.91c-.905 0-1.637.732-1.637 1.636v20.728c0 .904.732 1.636 1.636 1.636h14.182c.904 0 1.636-.732 1.636-1.636V6.727h-6zm-.545 10.455H7.09v-1.364h7.09v1.364zm2.727-3.273H7.091v-1.364h9.818v1.364zm0-3.273H7.091V9.273h9.818v1.363zM14.727 6h6l-6-6v6z" />
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
|
@ -10,6 +10,7 @@ import {
|
||||
Threads,
|
||||
Instagram,
|
||||
Medium,
|
||||
Resume,
|
||||
} from './icons'
|
||||
|
||||
const components = {
|
||||
@ -24,6 +25,7 @@ const components = {
|
||||
threads: Threads,
|
||||
instagram: Instagram,
|
||||
medium: Medium,
|
||||
resume: Resume,
|
||||
}
|
||||
|
||||
type SocialIconProps = {
|
||||
|
Reference in New Issue
Block a user