mirror of
https://github.com/yude-jp/yude.jp
synced 2024-11-02 00:18:00 +09:00
19 lines
349 B
JavaScript
19 lines
349 B
JavaScript
// 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 |