import React from 'react' import { Link } from 'gatsby' import { useSiteMetadata } from '../../hooks/useSiteMetadata' import Icon from '../atoms/Icon' import Vcard from '../molecules/Vcard' import * as styles from './Footer.module.css' function Copyright() { const { name, uri, github } = useSiteMetadata().author const year = new Date().getFullYear() return (

© 2005– {year + ' '} {name} View source Say Thanks

) } export default function Footer(): JSX.Element { return ( ) }