mirror of
https://github.com/Buriburizaem0n/nezha-dash-v1.git
synced 2026-05-06 05:48:41 +00:00
75 lines
2.3 KiB
TypeScript
75 lines
2.3 KiB
TypeScript
import { useQuery } from "@tanstack/react-query";
|
|
import type React from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
import { fetchSetting } from "@/lib/nezha-api";
|
|
|
|
const Footer: React.FC = () => {
|
|
const { t } = useTranslation();
|
|
const isMac = /macintosh|mac os x/i.test(navigator.userAgent);
|
|
|
|
const { data: settingData } = useQuery({
|
|
queryKey: ["setting"],
|
|
queryFn: () => fetchSetting(),
|
|
refetchOnMount: true,
|
|
refetchOnWindowFocus: true,
|
|
});
|
|
|
|
return (
|
|
<footer className="mx-auto w-full max-w-5xl px-4 lg:px-0 pb-4 server-footer">
|
|
<section className="flex flex-col">
|
|
<section className="mt-1 flex items-center sm:flex-row flex-col justify-between gap-2 text-[13px] font-light tracking-tight text-neutral-600/50 dark:text-neutral-300/50 server-footer-name">
|
|
<div className="flex items-center gap-1">
|
|
©2020-{new Date().getFullYear()}{" "}
|
|
<a
|
|
href={"https://github.com/naiba/nezha"}
|
|
target="_blank"
|
|
rel="noopener"
|
|
>
|
|
Nezha
|
|
</a>
|
|
<p>{settingData?.data?.version || ""}</p>
|
|
</div>
|
|
<div className="server-footer-theme flex flex-col items-center sm:items-end">
|
|
<p className="mt-1 text-[13px] font-light tracking-tight text-neutral-600/50 dark:text-neutral-300/50">
|
|
<kbd className="pointer-events-none mx-1 inline-flex h-4 select-none items-center gap-1 rounded border bg-muted px-1.5 font-mono text-[10px] font-medium text-muted-foreground opacity-100">
|
|
{isMac ? <span className="text-xs">⌘</span> : "Ctrl "}K
|
|
</kbd>
|
|
</p>
|
|
<section>
|
|
{t("footer.themeBy")}
|
|
<a
|
|
href={"https://github.com/hamster1963/nezha-dash"}
|
|
target="_blank"
|
|
rel="noopener"
|
|
>
|
|
nezha-dash
|
|
</a>
|
|
{import.meta.env.VITE_GIT_HASH && (
|
|
<a
|
|
href={`https://github.com/hamster1963/nezha-dash-v1/commit/${import.meta.env.VITE_GIT_HASH}`}
|
|
className="ml-1"
|
|
>
|
|
({import.meta.env.VITE_GIT_HASH})
|
|
</a>
|
|
)}
|
|
</section>
|
|
<section className="mt-1">
|
|
{"Modified by "}
|
|
<a
|
|
href={"https://github.com/buriburizaem0n"}
|
|
target="_blank"
|
|
rel="noopener"
|
|
className="hover:underline font-medium"
|
|
>
|
|
buriburizaem0n
|
|
</a>
|
|
</section>
|
|
</div>
|
|
</section>
|
|
</section>
|
|
</footer>
|
|
);
|
|
};
|
|
|
|
export default Footer;
|