22 lines
511 B
TypeScript
22 lines
511 B
TypeScript
import { Suspense } from 'react';
|
|||
|
|
import { LogoSimple } from '../../_components/logo';
|
||
|
|
import { VerificationTabs } from './_components/verification-tabs';
|
||
|
|
|
||
|
|
export default function Page() {
|
||
|
|
return (
|
||
|
|
<>
|
||
|
|
<div className="flex flex-col items-center gap-4">
|
||
|
|
<LogoSimple />
|
||
|
|
|
||
|
|
<p className="text-muted-foreground text-center text-sm sm:text-base">
|
||
|
|
Verifikasi akun mu sekarang
|
||
|
|
</p>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<Suspense>
|
||
|
|
<VerificationTabs />
|
||
|
|
</Suspense>
|
||
|
|
</>
|
||
|
|
);
|
||
|
|
}
|