2026-03-07 13:49:44 +00:00
|
|
|
import { T } from "src/locale";
|
|
|
|
|
|
|
|
|
|
export function SiteFooter() {
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<footer className="footer d-print-none py-3">
|
|
|
|
|
<div className="container-xl">
|
|
|
|
|
<div className="row text-center align-items-center flex-row-reverse">
|
|
|
|
|
<div className="col-lg-auto ms-lg-auto">
|
|
|
|
|
<ul className="list-inline list-inline-dots mb-0">
|
|
|
|
|
<li className="list-inline-item">
|
|
|
|
|
<a
|
|
|
|
|
href="https://github.com/NginxProxyManager/nginx-proxy-manager"
|
|
|
|
|
target="_blank"
|
|
|
|
|
className="link-secondary"
|
|
|
|
|
rel="noopener"
|
|
|
|
|
>
|
|
|
|
|
<T id="footer.github-fork" />
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
<div className="col-12 col-lg-auto mt-3 mt-lg-0">
|
|
|
|
|
<ul className="list-inline list-inline-dots mb-0">
|
|
|
|
|
<li className="list-inline-item">
|
2026-03-08 07:17:18 +00:00
|
|
|
© D3V.AC 2026{" "}
|
|
|
|
|
|
2026-03-07 13:49:44 +00:00
|
|
|
</li>
|
2026-03-08 07:17:18 +00:00
|
|
|
|
|
|
|
|
|
2026-03-07 13:49:44 +00:00
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</footer>
|
|
|
|
|
);
|
|
|
|
|
}
|