@@ -3,6 +3,7 @@ import BaseLink from '@/components/base/Link'
3
3
import ShareButton from '@/components/base/button/Share'
4
4
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
5
5
import { faHeart , faBug , faComments } from '@fortawesome/free-solid-svg-icons'
6
+ import { faGithub , faMastodon , faDiscord } from '@fortawesome/free-brands-svg-icons'
6
7
import Image from 'next/image'
7
8
import buyMeACoffeeImport from '@/public/assets/images/buy_me_a_coffee_button.png'
8
9
@@ -14,7 +15,6 @@ const AsideContent: React.FC = () => {
14
15
< a href = "https://www.buymeacoffee.com/chriswwweb" className = { `${ styles . coffeeButton } shake` } rel = "noopener noreferrer" target = "_blank" >
15
16
< Image src = { buyMeACoffeeImport } priority fill alt = "buy me a coffee, please" />
16
17
</ a >
17
- < br />
18
18
< span className = "fontDarker" > * Please 😉</ span >
19
19
< p className = "fontSmall fontDarker alignLeft" >
20
20
< FontAwesomeIcon icon = { faHeart } size = "1x" className = "startInlineIcon" />
@@ -32,9 +32,22 @@ const AsideContent: React.FC = () => {
32
32
< p className = "fontSmall fontDarker alignLeft" >
33
33
< FontAwesomeIcon icon = { faComments } className = "startInlineIcon" />
34
34
Suggestions and Ideas are appreciated, please use the
35
+ < BaseLink href = "https://discord.gg/4p59CCTUAJ" > chris.lu Discord server</ BaseLink >
36
+ or the
35
37
< BaseLink href = "https://github.com/chrisweb/chris.lu/discussions" > discussion board</ BaseLink >
36
38
to leave feedback or ask a question.
37
39
</ p >
40
+ < p >
41
+ < BaseLink href = "https://discord.gg/4p59CCTUAJ" noExternalIcon = { true } >
42
+ < FontAwesomeIcon icon = { faDiscord } color = "white" size = "2x" className = "socialIcon" />
43
+ </ BaseLink >
44
+ < BaseLink href = "https://mastodon.social/@chriswwweb" noExternalIcon = { true } >
45
+ < FontAwesomeIcon icon = { faMastodon } color = "white" size = "2x" className = "socialIcon" />
46
+ </ BaseLink >
47
+ < BaseLink href = "https://github.com/chrisweb" noExternalIcon = { true } >
48
+ < FontAwesomeIcon icon = { faGithub } color = "white" size = "2x" className = "socialIcon" />
49
+ </ BaseLink >
50
+ </ p >
38
51
</ div >
39
52
)
40
53
}
0 commit comments