Merge pull request #1 from nezhahq/ui-footer

ui: space between
This commit is contained in:
仓鼠 2024-11-24 01:15:56 +08:00 committed by GitHub
commit 0fb3f4a6cf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5149 additions and 7 deletions

5142
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -5,17 +5,17 @@ const Footer: React.FC = () => {
return (
<footer className="mx-auto w-full max-w-5xl px-4 lg:px-0 pb-4">
<section className="flex flex-col">
<section className="mt-1 flex items-center gap-2 text-[13px] font-light tracking-tight text-neutral-600/50 dark:text-neutral-300/50">
©2020-{new Date().getFullYear()}{" "}
<a href={"https://github.com/naiba/nezha"} target="_blank">
Nezha
</a>
<a
<section className="mt-1 flex items-center justify-between gap-2 text-[13px] font-light tracking-tight text-neutral-600/50 dark:text-neutral-300/50">
<p>©2020-{new Date().getFullYear()}{" "}
<a href={"https://github.com/naiba/nezha"} target="_blank">
Nezha
</a></p>
<p>Theme by <a
href={"https://github.com/hamster1963/nezha-dash-react"}
target="_blank"
>
Nezha-Dash
</a>
</a></p>
</section>
</section>
</footer>