initial commit

This commit is contained in:
root
2026-05-29 17:07:00 +02:00
commit c935e39fa1
30 changed files with 1263 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
import Link from 'next/link';
export default function HomePage() {
return (
<div>
<h1>Self-hosted tunnels for Home Assistant</h1>
<p className="muted">
Claim a subdomain, drop a token into the LinumIQ frp-tunnel add-on, and
expose your Home Assistant securely over HTTPS no router changes.
</p>
<div className="row" style={{ marginTop: '1.5rem' }}>
<Link className="btn" href="/signup">
Sign up
</Link>
<Link className="btn secondary" href="/login">
Login
</Link>
</div>
</div>
);
}