[web] marketing: update social counts
(cherry picked from commit a099911a56)
This commit is contained in:
parent
90f59d7879
commit
2cefcc8295
|
|
@ -3,8 +3,8 @@ import clsx from 'clsx';
|
|||
import { useEffect, useMemo, useRef, useState } from 'react';
|
||||
import {
|
||||
RiCheckboxCircleFill,
|
||||
RiGithubLine,
|
||||
RiGoogleLine,
|
||||
RiGithubFill,
|
||||
RiGoogleFill,
|
||||
} from 'react-icons/ri';
|
||||
import url from 'url';
|
||||
|
||||
|
|
@ -137,13 +137,13 @@ export default function ProfileAccountIdentities({ userIdentities }: Props) {
|
|||
> = {
|
||||
github: {
|
||||
connected: !!githubIdentity,
|
||||
icon: RiGithubLine,
|
||||
icon: RiGithubFill,
|
||||
label: 'GitHub',
|
||||
provider: 'github',
|
||||
},
|
||||
google: {
|
||||
connected: !!googleIdentity,
|
||||
icon: RiGoogleLine,
|
||||
icon: RiGoogleFill,
|
||||
label: 'Google',
|
||||
provider: 'google',
|
||||
},
|
||||
|
|
|
|||
|
|
@ -28,14 +28,14 @@ export const SocialLinks: Record<SocialLinkPlatform, SocialLinkMetadata> = {
|
|||
icon: RiDiscordFill,
|
||||
key: 'discord',
|
||||
name: 'Discord',
|
||||
userCount: 1_872,
|
||||
userCount: 1_962,
|
||||
},
|
||||
discordPremium: {
|
||||
href: 'https://discord.gg/8suTg77xXz',
|
||||
icon: RiDiscordFill,
|
||||
key: 'discord-premium',
|
||||
name: 'Discord (Premium)',
|
||||
userCount: 6_534,
|
||||
userCount: 6_850,
|
||||
},
|
||||
github: {
|
||||
href: 'https://www.github.com/greatfrontend',
|
||||
|
|
@ -49,7 +49,7 @@ export const SocialLinks: Record<SocialLinkPlatform, SocialLinkMetadata> = {
|
|||
icon: RiLinkedinBoxFill,
|
||||
key: 'linkedin',
|
||||
name: 'LinkedIn',
|
||||
userCount: 44_714,
|
||||
userCount: 49_023,
|
||||
},
|
||||
reddit: {
|
||||
href: 'https://reddit.com/r/greatfrontend',
|
||||
|
|
@ -63,6 +63,6 @@ export const SocialLinks: Record<SocialLinkPlatform, SocialLinkMetadata> = {
|
|||
icon: RiTwitterXFill,
|
||||
key: 'x',
|
||||
name: 'Twitter / X',
|
||||
userCount: 6_194,
|
||||
userCount: 6_482,
|
||||
},
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in New Issue