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

Github

{stargazers.count} stars

Discord

{stargazers.count} online
); }