lthn.io/app/Mod/Names/Views/available.blade.php
Claude b28cd85a26
feat(names): sunrise period claim flow + improved available page
- Reserved names show Sunrise Period card with claim CTA
- Claim links to developers@lethean.io with pre-filled subject
- "Proof of brand ownership required" disclosure
- Available names page: feature list + prominent register button
- Fixed HNS → ITNS sidechain label

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-04 05:45:54 +01:00

29 lines
1.3 KiB
PHP

@extends('lethean::layout')
@section('title', $name . '.lthn — Available')
@section('content')
<div class="section" style="text-align: center; padding: 4rem 0;">
<h2><span style="color: var(--green);">{{ $name }}.lthn</span> is available!</h2>
<p style="color: var(--muted); margin: 1rem 0;">This name has not been registered yet. Claim it now.</p>
<div class="card-grid" style="max-width: 600px; margin: 2rem auto;">
<div class="card" style="text-align: left;">
<h3>What you get</h3>
<ul style="color: var(--muted); line-height: 2; list-style: none; padding: 0;">
<li>Blockchain-native .lthn identity</li>
<li>DNS management via client portal</li>
<li>VPN/proxy routing through your name</li>
<li>Permanent on-chain registration</li>
</ul>
</div>
</div>
<a href="https://order.lthn.ai/order/" class="api-link" style="font-size: 1rem; padding: 0.75rem 2rem;">Register {{ $name }}.lthn &rarr;</a>
<div style="margin-top: 2rem; display: flex; gap: 1.5rem; justify-content: center;">
<a href="/names">&larr; Back to directory</a>
<a href="/v1/names/available/{{ $name }}">API check &rarr;</a>
</div>
</div>
@endsection