mirror of
https://github.com/yude-jp/yude.jp
synced 2024-11-02 00:18:00 +09:00
20 lines
421 B
JavaScript
20 lines
421 B
JavaScript
// Next.js
|
|
import Link from 'next/link'
|
|
|
|
const HappyBusy = (props) => {
|
|
return (
|
|
<Link href="https://sites.google.com/site/happybusy/">
|
|
<a>
|
|
<img
|
|
src="/images/busy_banner.png"
|
|
width={200}
|
|
height={42}
|
|
alt="時間のないサイト運営者リング"
|
|
className="mx-auto"
|
|
/>
|
|
</a>
|
|
</Link>
|
|
)
|
|
}
|
|
|
|
export default HappyBusy |