Skip to content

Commit 32bf82c

Browse files
Merge pull request #8 from 0xPlaygrounds/add-discord-to-footer
feat: add discord to socials
2 parents 618605a + c6bbf2b commit 32bf82c

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

src/components/footer.tsx

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,19 @@ export const Footer = () => {
125125
>
126126
X
127127
</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>
128141
</div>
129142
</div>
130143
</div>

src/constants/socialLinks.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ export const SOCIAL_LINKS = {
22
github: 'https://github.com/0xPlaygrounds',
33
youtube: 'https://www.youtube.com/@arcdotfun',
44
x: 'https://x.com/ryzomeai',
5+
discord: 'https://discord.com/invite/playgrounds',
56
};
67

78
export const CONTACT_INFO = {

0 commit comments

Comments
 (0)