Skip to content

Commit

Permalink
add support link to clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
arilotter committed Jan 8, 2022
1 parent 1bb9546 commit 70ade27
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion src/components/Clippy.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,23 @@ export function Clippy({ message, onOutOfMessages }: ClippyProps) {
return (
<div className="clippyContainer">
<div className="speechBubble">
{isHovering ? angryDialog[clickCount] : <p>{message}</p>}
{isHovering ? (
angryDialog[clickCount]
) : (
<>
<p>{message}</p>
<p>
<a
href="https://github.com/arilotter/vaportrade/discussions"
style={{
pointerEvents: "auto",
}}
>
Click here for Vaportrade discussion & support
</a>
</p>
</>
)}
<div className="speechBubbleArrow"></div>
</div>

Expand Down

0 comments on commit 70ade27

Please sign in to comment.