0
0
mirror of https://github.com/yude-jp/yude.jp synced 2024-06-09 15:26:01 +09:00
yude.jp/pages/components/Footer/BlueRibbon.js
2021-12-11 19:19:50 +09:00

19 lines
357 B
JavaScript

// Next.js
import Link from 'next/link'
const happybusy = (props) => {
return (
<Link href="https://www.eff.org/pages/blue-ribbon-campaign">
<a>
<img
src="/images/brstrip.gif"
width={150}
height={41}
alt="EFF Blue Ribbon Campaign"
/>
</a>
</Link>
)
}
export default happybusy