feat: create onboarding UX flow
This commit is contained in:
21
packages/web/src/pages/Installation/index.jsx
Normal file
21
packages/web/src/pages/Installation/index.jsx
Normal file
@@ -0,0 +1,21 @@
|
||||
import * as React from 'react';
|
||||
import Stack from '@mui/material/Stack';
|
||||
|
||||
import Container from 'components/Container';
|
||||
import InstallationForm from 'components/InstallationForm';
|
||||
|
||||
export default function Installation() {
|
||||
return (
|
||||
<Stack
|
||||
alignItems="center"
|
||||
justifyContent="center"
|
||||
flexDirection="column"
|
||||
py={3}
|
||||
flex={1}
|
||||
>
|
||||
<Container maxWidth="sm">
|
||||
<InstallationForm />
|
||||
</Container>
|
||||
</Stack>
|
||||
);
|
||||
}
|
Reference in New Issue
Block a user