| 1 | --- |
| 2 | import Account from '../../layouts/Account.astro'; |
| 3 | --- |
| 4 | <Account |
| 5 | wide |
| 6 | title="Public profile — Reasonix" |
| 7 | titleEn="Public profile — Reasonix" |
| 8 | titleZh="公开主页 — Reasonix" |
| 9 | description="View a Reasonix community profile."> |
| 10 | <div id="public-profile-gate" class="auth-msg">Loading profile…</div> |
| 11 | |
| 12 | <div id="public-profile" hidden> |
| 13 | <div class="acct-id"> |
| 14 | <img id="public-profile-avatar" hidden width="72" height="72" alt="" style="border-radius:18px;object-fit:cover" /> |
| 15 | <div> |
| 16 | <h1 id="public-profile-name" class="acct-handle"></h1> |
| 17 | <div id="public-profile-handle" class="acct-email"></div> |
| 18 | </div> |
| 19 | </div> |
| 20 | <p id="public-profile-bio" style="white-space:pre-wrap;line-height:1.7"></p> |
| 21 | <p class="hint"><span class="l-en">Joined </span><span class="l-zh">加入于 </span><span id="public-profile-joined"></span></p> |
| 22 | </div> |
| 23 | </Account> |
| 24 |