Files
NexaVPN/public-web/index.html
nessi 0b29331f26 refactor: remove admin portal link and promote API health check to primary action
Remove admin portal link from public-web landing page actions. Change API health check button from secondary to primary style.
2026-03-17 22:16:16 +01:00

35 lines
1.1 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>NexaVPN</title>
<link rel="icon" href="/favicon.ico" />
<link rel="stylesheet" href="/styles.css" />
</head>
<body>
<main class="shell">
<section class="hero">
<img class="logo" src="/NexaVPN_Logo.png" alt="NexaVPN" />
<p class="eyebrow">Private access</p>
<h1>Connect with the NexaVPN app.</h1>
<p class="copy">
Use the desktop client to sign in, provision this device, and connect to your private network.
</p>
<div class="actions">
<a class="button primary" href="/api/v1/healthz">API health</a>
</div>
</section>
<section class="card">
<h2>What this host is for</h2>
<ul>
<li>Desktop client login and device enrollment</li>
<li>Profile sync for provisioned devices</li>
<li>Public VPN entrypoint information</li>
</ul>
</section>
</main>
</body>
</html>