cvsa/packages/frontend/src/pages/register/index.astro

31 lines
1.1 KiB
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
import Layout from "@layouts/Layout.astro";
import RightArrow from "@components/icon/RightArrow.astro";
---
<Layout title="注册">
<main class="relative flex-grow pt-36 px-4 md:w-full md:flex md:items-center md:flex-col">
<div class="md:w-[40rem] rounded-md md:p-8 md:bg-container md:dark:bg-dark-container">
<h1 class="text-5xl leading-[4rem] font-extralight">欢迎</h1>
<p class="h-14 mt-2.5 md:mt-4">
欢迎来到中V档案馆。<br/>
这里是中文虚拟歌手相关信息的收集站与档案馆。
</p>
<p class="h-14">
注册一个账号,<br/>
让我们一起见证中V的历史现在与未来。
</p>
<p class="md:mt-2">
已有账户?
<a href="/login">
<span>登录</span>
<RightArrow class="inline -translate-y-0.5" aria-hidden="true"/>
</a>
</p>
<p class="mt-4 leading-8 font-medium">很抱歉,但您现在无法注册。</p>
<p class="text-sm text-[#534341] dark:text-[#d8c2be]">因为目前还没有写好啦~</p>
<p class="mt-4"><a href="/">返回首页</a></p>
</div>
</main>
</Layout>