cvsa/packages/next/app/signup/page.tsx
2025-05-24 17:13:26 +08:00

41 lines
1.3 KiB
TypeScript
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 { LeftArrow } from "@/components/icons/LeftArrow";
import { RightArrow } from "@/components/icons/RightArrow";
import SignUpForm from "./SignUpForm";
export default function SignupPage() {
return (
<main className="relative flex-grow pt-8 md:pt-0 px-4 md:w-full md:h-full md:flex md:items-center md:justify-center">
<div
className="md:w-[40rem] rounded-md md:p-8 md:-translate-y-6
md:bg-surface-container md:dark:bg-dark-surface-container"
>
<p className="mb-2">
<a href="/">
<LeftArrow className="inline -translate-y-[0.1rem] scale-90" aria-hidden="true" />
</a>
</p>
<h1 className="text-5xl leading-[4rem] font-extralight"></h1>
<p className="mt-2 md:mt-3">
V
<br />
</p>
<p className="my-2">
<br />
V
</p>
<p className="mt-4 mb-7">
<a href="/login">
<span></span>
<RightArrow className="text-xs inline -translate-y-0.5" aria-hidden="true" />
</a>
</p>
<SignUpForm backendURL={process.env.BACKEND_URL} />
</div>
</main>
);
}