We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 618605a + c6bbf2b commit 32bf82cCopy full SHA for 32bf82c
src/components/footer.tsx
@@ -125,6 +125,19 @@ export const Footer = () => {
125
>
126
X
127
</a>
128
+ <a
129
+ href={SOCIAL_LINKS.discord}
130
+ target="_blank"
131
+ className="hover:underline"
132
+ onClick={() => {
133
+ posthog.capture('cta_click', {
134
+ cta: 'footer_discord',
135
+ href: 'https://discord.com/invite/playgrounds',
136
+ });
137
+ }}
138
+ >
139
+ Discord
140
+ </a>
141
</div>
142
143
src/constants/socialLinks.ts
@@ -2,6 +2,7 @@ export const SOCIAL_LINKS = {
2
github: 'https://github.com/0xPlaygrounds',
3
youtube: 'https://www.youtube.com/@arcdotfun',
4
x: 'https://x.com/ryzomeai',
5
+ discord: 'https://discord.com/invite/playgrounds',
6
};
7
8
export const CONTACT_INFO = {
0 commit comments