import React from "react"; import { FaGithub, FaDiscord } from "react-icons/fa"; import { RiStarSFill } from "react-icons/ri"; import { useAppStars } from "@site/src/hooks/useAppStars"; import { useDiscordWidget } from "@site/src/hooks/useDiscordWidget"; export default function SocialButton() { const { stargazers } = useAppStars(); const { data } = useDiscordWidget(); return (

Github

{stargazers.count} stars

Discord

{data.presence_count} online
); }