Update README.md. Add link to site URL

This commit is contained in:
2026-09-27 07:10:28 +01:00
parent 8ed5fd1845
commit bbf29a5c1a
4 changed files with 21 additions and 12 deletions
+10 -2
View File
@@ -1,5 +1,6 @@
import Row from "@/src/components/twui/layout/Row";
import Span from "@/src/components/twui/layout/Span";
import { SiteData } from "@/src/data/site-data";
import { AppContext } from "@/src/pages/__root";
import type { AppContextObject } from "@/src/types";
import React from "react";
@@ -15,8 +16,15 @@ export default function Footer() {
<footer className="w-full p-4 h-20">
<Row className="h-full">
<Span size="smaller" variant="faded">
Copyright © {new Date().getFullYear()}. Wireguard UI. All
rights reserved
Copyright © {new Date().getFullYear()}.{" "}
<a
href={SiteData["SiteURL"]}
target="_blank"
className="decoration-dotted underline"
>
{SiteData["SiteName"]}
</a>
. All rights reserved
</Span>
</Row>
</footer>