0
0
mirror of https://github.com/yude-jp/yude.jp synced 2025-03-15 04:22:23 +09:00
yude.jp/pages/components/Footer/BlueRibbon.js

19 lines
357 B
JavaScript
Raw Normal View History

2021-08-09 11:04:26 +09:00
// Next.js
import Link from 'next/link'
const happybusy = (props) => {
return (
<Link href="https://www.eff.org/pages/blue-ribbon-campaign">
<a>
2021-12-11 19:19:50 +09:00
<img
2021-08-09 11:04:26 +09:00
src="/images/brstrip.gif"
width={150}
height={41}
2021-09-22 07:13:49 +09:00
alt="EFF Blue Ribbon Campaign"
2021-08-09 11:04:26 +09:00
/>
</a>
</Link>
)
}
export default happybusy