mirror of
https://github.com/blueskychan-dev/blueskychan.dev.git
synced 2025-07-08 07:41:05 +00:00
fixed whole skill issues
This commit is contained in:
parent
68a78ff3ae
commit
b627911311
19 changed files with 439 additions and 81 deletions
15
src/components/LinkIcon.jsx
Normal file
15
src/components/LinkIcon.jsx
Normal file
|
@ -0,0 +1,15 @@
|
|||
import Link from "next/link"
|
||||
|
||||
const ProfileLink = ({ href, LinkIcon }) => {
|
||||
return (
|
||||
<Link
|
||||
href={href}
|
||||
aria-label={href}
|
||||
className={`bg-base-200 mx-3 rounded-lg p-1.5 transition-transform duration-200 ease-in-out hover:scale-110`}
|
||||
>
|
||||
{LinkIcon}
|
||||
</Link>
|
||||
)
|
||||
}
|
||||
|
||||
export default ProfileLink
|
Loading…
Add table
Add a link
Reference in a new issue