mirror of
https://github.com/yude-jp/yude.jp
synced 2025-03-21 07:17:28 +09:00
18 lines
358 B
JavaScript
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
|