feat: confirm access page and persist redux store
This commit is contained in:
16
app/confirm-access/page.tsx
Normal file
16
app/confirm-access/page.tsx
Normal file
@ -0,0 +1,16 @@
|
||||
import PageContainer from "@/components/PageContainer/PageContainer";
|
||||
import PageItem from "@/components/PageBlock/PageItem";
|
||||
import Logo from "@/components/Logo/Logo";
|
||||
import ConfirmAccessForm from "@/components/ConfirmAccessForm/ConfirmAccessForm";
|
||||
|
||||
|
||||
export default function ConfirmAccessPage() {
|
||||
return (
|
||||
<PageContainer center>
|
||||
<PageItem fullScreenMobile>
|
||||
<Logo title={"Вход с помощью LogiDex ID"} />
|
||||
<ConfirmAccessForm />
|
||||
</PageItem>
|
||||
</PageContainer>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user