0
0
mirror of https://github.com/yude-jp/yude.jp synced 2024-11-02 08:28:01 +09:00
yude.jp/pages/components/Footer/BlueRibbon.js

19 lines
349 B
JavaScript
Raw Normal View History

2021-08-09 11:04:26 +09:00
// Next.js
import Link from 'next/link'
import Image from 'next/image'
const happybusy = (props) => {
return (
<Link href="https://www.eff.org/pages/blue-ribbon-campaign">
<a>
<Image
src="/images/brstrip.gif"
width={150}
height={41}
/>
</a>
</Link>
)
}
export default happybusy