This commit is contained in:
Vixcity
2023-01-03 21:10:27 +08:00
parent 7da44bd0de
commit 271e4b76be
119 changed files with 2515 additions and 2072 deletions

View File

@@ -8,15 +8,17 @@ import Link from 'next/link'
*/
const ContactButton = () => {
return (
<Link href='/about'>
<a className={'fixed right-10 bottom-40 animate__fadeInRight animate__animated animate__faster'}>
(<Link
href='/about'
className={'fixed right-10 bottom-40 animate__fadeInRight animate__animated animate__faster'}>
<span
className='dark:bg-black bg-white px-5 py-3 cursor-pointer shadow-card text-xl hover:bg-blue-500 transform duration-200 hover:text-white hover:shadow'>
<i className='dark:text-gray-200 fas fa-info' title='about' />
</span>
</a>
</Link>
)
</Link>)
);
}
export default ContactButton