add analytics
All checks were successful
deploy / deploy (push) Successful in 53s

This commit is contained in:
Lee
2023-10-24 12:45:40 +01:00
parent 2303409ecb
commit 3e10b0108b
2 changed files with 11 additions and 0 deletions

View File

@ -127,6 +127,7 @@ export default function PlayerInfo({ playerData }: PlayerInfoProps) {
<button
className="h-fit w-fit rounded-md bg-blue-500 p-1 hover:bg-blue-600"
onClick={claimProfile}
aria-label="Set as your Profile"
>
<HomeIcon title="Set as your Profile" width={24} height={24} />
</button>
@ -138,6 +139,7 @@ export default function PlayerInfo({ playerData }: PlayerInfoProps) {
<button
className="rounded-md bg-blue-500 p-1 hover:opacity-80"
onClick={addFriend}
aria-label="Add as Friend"
>
<UserIcon title="Add as Friend" width={24} height={24} />
</button>
@ -147,6 +149,7 @@ export default function PlayerInfo({ playerData }: PlayerInfoProps) {
<button
className="rounded-md bg-red-500 p-1 hover:opacity-80"
onClick={removeFriend}
aria-label="Remove Friend"
>
<XMarkIcon title="Remove Friend" width={24} height={24} />
</button>