nezha_dash/app/[locale]/(main)/footer.tsx
2024-09-26 10:23:56 +08:00

14 lines
955 B
TypeScript

import { useTranslations } from 'next-intl';
export default function Footer() {
const t = useTranslations("Footer");
return <footer className="mx-auto w-full max-w-5xl">
<section className="flex flex-col">
<p className="mt-3 flex gap-1 text-[13px] font-light tracking-tight text-neutral-600/50 dark:text-neutral-300/50">{t('p_146-598_Findthecodeon')}{" "}
<a href="https://github.com/hamster1963/nezha-dash" target="_blank" className="cursor-pointer font-normal underline decoration-yellow-500 decoration-2 underline-offset-2 dark:decoration-yellow-500/50">{t('a_303-585_GitHub')}</a>
</p>
<section className="mt-1 flex items-center gap-2 text-[13px] font-light tracking-tight text-neutral-600/50 dark:text-neutral-300/50">{t('section_607-869_2020')}{new Date().getFullYear()}{" "}
<a href={"https://buycoffee.top"}>{t('a_800-850_Hamster1963')}</a>
</section>
</section>
</footer>;
}