27 lines
710 B
TypeScript
27 lines
710 B
TypeScript
import LoginButton from "@/components/Current/Header/LoginButton"
|
|
import { getIntl } from "@/i18n"
|
|
|
|
import styles from "./signUpVerification.module.css"
|
|
|
|
import type { SignUpVerificationProps } from "@/types/components/blocks/dynamicContent"
|
|
|
|
export default async function SignUpVerification({
|
|
title,
|
|
subtitle,
|
|
}: SignUpVerificationProps) {
|
|
const intl = await getIntl()
|
|
|
|
return (
|
|
<div className={styles.container}>
|
|
<LoginButton
|
|
className={styles.loginButton}
|
|
trackingId="signUpVerificationLogin"
|
|
position="sign up verification"
|
|
variant="signupVerification"
|
|
>
|
|
{intl.formatMessage({ id: "Proceed to login" })}
|
|
</LoginButton>
|
|
</div>
|
|
)
|
|
}
|