import pack from "@/package.json" import { useTranslations } from "next-intl" const GITHUB_URL = "https://github.com/hamster1963/nezha-dash" const PERSONAL_URL = "https://buycoffee.top" type LinkProps = { href: string children: React.ReactNode } const FooterLink = ({ href, children }: LinkProps) => ( {children} ) const baseTextStyles = "text-[13px] font-light tracking-tight text-neutral-600/50 dark:text-neutral-300/50" export default function Footer() { const t = useTranslations("Footer") const version = pack.version const currentYear = new Date().getFullYear() return ( ) }