Skip to content

Commit 80c323c

Browse files
committed
chore: remove Bluesky and TikTok links
Remove Bluesky and TikTok from the footer config and shared social icon set, and delete the unused social URL constants.
1 parent cef3ea3 commit 80c323c

3 files changed

Lines changed: 3 additions & 27 deletions

File tree

docusaurus.config.ts

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@ import {
55
DISCORD_URL,
66
REDDIT_URL,
77
TWITTER_URL,
8-
BLUESKY_URL,
98
LINKEDIN_URL,
10-
TIKTOK_URL,
119
GITHUB_MAIN_REPO_URL,
1210
GITHUB_ISSUES_MAIN_URL,
1311
GITHUB_FEATURES_URL,
@@ -379,10 +377,6 @@ const config: Config = {
379377
label: 'Twitter',
380378
href: TWITTER_URL,
381379
},
382-
{
383-
label: 'Bluesky',
384-
href: BLUESKY_URL,
385-
},
386380
{
387381
label: 'GitHub',
388382
href: GITHUB_MAIN_REPO_URL,
@@ -391,10 +385,6 @@ const config: Config = {
391385
label: 'LinkedIn',
392386
href: LINKEDIN_URL,
393387
},
394-
{
395-
label: 'TikTok',
396-
href: TIKTOK_URL,
397-
},
398388
],
399389
},
400390
{

src/components/SocialIcons/index.tsx

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
import React from 'react';
2-
import { FaBluesky, FaDiscord, FaGithub, FaLinkedin, FaReddit, FaTiktok, FaXTwitter } from 'react-icons/fa6';
2+
import { FaDiscord, FaGithub, FaLinkedin, FaReddit, FaXTwitter } from 'react-icons/fa6';
33
import {
44
DISCORD_URL,
55
REDDIT_URL,
66
TWITTER_URL,
7-
BLUESKY_URL,
87
LINKEDIN_URL,
9-
TIKTOK_URL,
108
GITHUB_MAIN_REPO_URL,
119
} from '../../constants';
1210

@@ -37,16 +35,6 @@ const SocialIcons: React.FC = () => {
3735
icon: FaLinkedin,
3836
label: 'LinkedIn'
3937
},
40-
{
41-
href: TIKTOK_URL,
42-
icon: FaTiktok,
43-
label: 'TikTok'
44-
},
45-
{
46-
href: BLUESKY_URL,
47-
icon: FaBluesky,
48-
label: 'Bluesky'
49-
},
5038
];
5139

5240
return (
@@ -80,4 +68,4 @@ const SocialIcons: React.FC = () => {
8068
);
8169
};
8270

83-
export default SocialIcons;
71+
export default SocialIcons;

src/constants.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,7 @@ export const GITHUB_NEW_ISSUE_URL = `${GITHUB_ISSUES_URL}/new`;
1111
export const DISCORD_URL = 'https://discord.gg/SfHYG44NUA';
1212
export const REDDIT_URL = 'https://www.reddit.com/r/ZooCode/';
1313
export const TWITTER_URL = 'https://x.com/ZooCodeDev';
14-
export const BLUESKY_URL = 'https://bsky.app/profile/roocode.bsky.social';
1514
export const LINKEDIN_URL = 'https://www.linkedin.com';
16-
export const TIKTOK_URL = 'https://www.tiktok.com/@roo.code';
1715

1816
// GitHub links
1917
export const GITHUB_MAIN_REPO_URL = 'https://github.com/Zoo-Code-Org/Zoo-Code';
@@ -31,4 +29,4 @@ export const EXTENSION_PRIVACY_URL = `${GITHUB_MAIN_REPO_URL}/blob/main/PRIVACY.
3129
// Authentication links
3230
export const APP_URL = 'https://www.zoocode.dev';
3331
export const SIGN_IN_URL = `${APP_URL}/sign-in`;
34-
export const SIGN_UP_URL = `${APP_URL}/sign-up`;
32+
export const SIGN_UP_URL = `${APP_URL}/sign-up`;

0 commit comments

Comments
 (0)