export const welcomeToUiFoundationsKit = [
{
selector: 'body',
content: (
<Stack spacing={1.5}>
<Box
sx={{
fontWeight: 'bold',
}}
>{`Welcome to UI Foundations Kit!`}</Box>
<Box>
{`To get oriented with the capabilities of this template and its components, you can continue this walkthrough.`}
</Box>
<Box>{`You can continue by clicking the next arrow, or using your arrow keys on the keyboard. This tour can easily be added to any of your own features with a convenient API as well!`}</Box>
</Stack>
),
},
]
const TOURS_DATA = {
welcome: {
title: 'Welcome to Kit',
tourSteps: welcomeToUiFoundationsKit,
},
};