feat: wip public payment page

This commit is contained in:
Ahmed Bouhuolia
2024-09-14 22:10:27 +02:00
parent 162b92ce84
commit 9517b4e279
5 changed files with 243 additions and 1 deletions

View File

@@ -32,7 +32,9 @@ const RegisterVerify = lazy(
const OneClickDemoPage = lazy(
() => import('@/containers/OneClickDemo/OneClickDemoPage'),
);
const PaymentPortalPage = lazy(
() => import('@/containers/PaymentPortal/PaymentPortalPage'),
);
/**
* App inner.
*/
@@ -57,6 +59,7 @@ function AppInsider({ history }) {
children={<EmailConfirmation />}
/>
<Route path={'/auth'} children={<AuthenticationPage />} />
<Route path={'/payment'} children={<PaymentPortalPage />} />
<Route path={'/'} children={<DashboardPrivatePages />} />
</Switch>
</Router>