import { useStore } from "@nanostores/react" import { GithubIcon } from "lucide-react" import { $newVersion } from "@/lib/stores" import { Separator } from "./ui/separator" import { Trans } from "@lingui/react/macro" export function FooterRepoLink() { const newVersion = useStore($newVersion) return (
) }