0
0
mirror of https://github.com/yude-jp/yude.jp synced 2025-10-13 11:48:37 +09:00

Try to fix CI

This commit is contained in:
2021-08-09 11:43:30 +09:00
parent ffc6acb9cb
commit 7f2411b2f6
2 changed files with 11 additions and 11 deletions

View File

@@ -9,11 +9,11 @@ import Link from 'next/link'
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
const FontAwesomeMenu = (props) => {
const { icon, dest } = props
const { icon } = props
return (
<div>
<Link href={dest}>
<Link>
<a>
<FontAwesomeIcon icon={icon} className="w-10 h-10 fill-current inline transition duration-200 ease-in-out transform hover:-translate-y-1 hover:scale-110" />
</a>