Estayparadox/Prismic-Gatsby-Boilerplate

View on GitHub
src/shared/components/Footer/Footer.jsx

Summary

Maintainability
A
0 mins
Test Coverage
import * as React from 'react';

import * as S from './Footer.styles';

export const Footer = () => (
  <S.Footer>
    © {new Date().getFullYear()} &middot; Built by
    <S.Link href='https://www.buymeacoffee.com/estayparadox'>
      Joseph Pereniguez
    </S.Link>
  </S.Footer>
);