22 lines
598 B
TypeScript
22 lines
598 B
TypeScript
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>
|
|
);
|
|
}
|