0
0
mirror of https://github.com/yude-jp/yude.jp synced 2025-01-10 21:40:22 +09:00
yude.jp/pages/components/Footer/happybusy.js
2021-08-09 11:00:34 +09:00

18 lines
358 B
JavaScript

// Next.js
import Link from 'next/link'
const happybusy = (props) => {
return (
<Link href="https://sites.google.com/site/happybusy/">
<a>
<Image
src="/images/busy_banner.png"
width={200}
height={42}
/>
</a>
</Link>
)
}
export default happybusy