import { useTheme } from '@emotion/react'; import { IconBrandGithub } from 'twenty-ui'; import { ActionLink } from '@/ui/navigation/link/components/ActionLink.tsx'; import packageJson from '../../../../../../package.json'; import { GITHUB_LINK } from '../constants/GithubLink'; export const GithubVersionLink = () => { const theme = useTheme(); return ( {packageJson.version} ); };