feat: add TOS
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-02-26 10:58:00 +00:00
parent bfb2b072f9
commit 912bb21022
10 changed files with 322 additions and 12 deletions

View File

@ -3,6 +3,7 @@ import { VmTemplate, LNVpsApi } from "../api";
import Profile from "../components/profile";
import VpsCard from "../components/vps-card";
import { ApiUrl, NostrProfile } from "../const";
import { Link } from "react-router-dom";
export default function HomePage() {
const [offers, setOffers] = useState<Array<VmTemplate>>([]);
@ -25,27 +26,29 @@ export default function HomePage() {
<small>
All VPS come with 1x IPv4 and 1x IPv6 address and unmetered traffic
</small>
<div className="flex flex-col gap-4">
<b>You can also find us on nostr: </b>
<a target="_blank" href={`nostr:${NostrProfile.encode()}`}>
<div className="flex flex-col gap-6">
<a target="_blank" href={`https://snort.social/${NostrProfile.encode()}`}>
<Profile link={NostrProfile} />
</a>
<div>
<div className="text-center">
<a target="_blank" href="http://speedtest.v0l.io">
Speedtest
</a>
{" "}
{" | "}
<a href="/lnvps.asc">PGP</a>
{" "}
{" | "}
<a href="https://lnvps1.statuspage.io/" target="_blank">Status</a>
{" | "}
<Link to="/tos">Terms</Link>
</div>
<div className="text-xs text-center text-neutral-400">
LNVPS is a trading name of Apex Strata Ltd, a company registered in Ireland.
<br />
Comany Number: 702423,
Address: Suite 10628, 26/27 Upper Pembroke Street, Dublin 2, D02 X361, Ireland
</div>
</div>
<div className="text-xs text-center text-neutral-400">
LNVPS is a trading name of Apex Strata Ltd, a company registered in Ireland.
<br />
Comany Number: 702423,
Address: Suite 10628, 26/27 Upper Pembroke Street, Dublin 2, D02 X361, Ireland
</div>
</div>
</>
);