build ok,
This commit is contained in:
19
002_source/cms/src/app/auth/cognito/sign-up/page.tsx
Normal file
19
002_source/cms/src/app/auth/cognito/sign-up/page.tsx
Normal file
@@ -0,0 +1,19 @@
|
||||
import * as React from 'react';
|
||||
import type { Metadata } from 'next';
|
||||
|
||||
import { config } from '@/config';
|
||||
import { SignUpForm } from '@/components/auth/cognito/sign-up-form';
|
||||
import { GuestGuard } from '@/components/auth/guest-guard';
|
||||
import { SplitLayout } from '@/components/auth/split-layout';
|
||||
|
||||
export const metadata: Metadata = { title: `Sign up | Cognito | Auth | ${config.site.name}` };
|
||||
|
||||
export default function Page(): React.JSX.Element {
|
||||
return (
|
||||
<GuestGuard>
|
||||
<SplitLayout>
|
||||
<SignUpForm />
|
||||
</SplitLayout>
|
||||
</GuestGuard>
|
||||
);
|
||||
}
|
Reference in New Issue
Block a user