diff --git a/app/(main)/footer.tsx b/app/(main)/footer.tsx index 6370577..7958feb 100644 --- a/app/(main)/footer.tsx +++ b/app/(main)/footer.tsx @@ -1,38 +1,53 @@ 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 (