import { useState, useEffect } from "react"; 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>([]); useEffect(() => { const api = new LNVpsApi(ApiUrl, undefined); api.listOffers().then((o) => setOffers(o)); }, []); return ( <>

VPS Offers

{offers.map((a) => ( ))}
All VPS come with 1x IPv4 and 1x IPv6 address and unmetered traffic
Speedtest {" | "} PGP {" | "} Status {" | "} Terms
LNVPS is a trading name of Apex Strata Ltd, a company registered in Ireland.
Comany Number: 702423, Address: Suite 10628, 26/27 Upper Pembroke Street, Dublin 2, D02 X361, Ireland
); }