This commit is contained in:
2026-09-20 11:21:26 +01:00
parent 59071f87ad
commit fd0af3172d
4 changed files with 13 additions and 14 deletions
+5 -1
View File
@@ -1,4 +1,5 @@
import Row from "@/src/components/twui/layout/Row";
import Span from "@/src/components/twui/layout/Span";
import { AppContext } from "@/src/pages/__root";
import type { AppContextObject } from "@/src/types";
import React from "react";
@@ -13,7 +14,10 @@ export default function Footer() {
return (
<footer className="w-full p-4 h-20">
<Row className="h-full">
<span>Copyright {new Date().getFullYear()}</span>
<Span size="smaller" variant="faded">
Copyright © {new Date().getFullYear()}. Wireguard UI. All
rights reserved
</Span>
</Row>
</footer>
);