lamassu-server/new-lamassu-admin/src/pages/Wizard/components/Welcome.jsx
2025-05-12 09:45:43 +01:00

22 lines
656 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import React from 'react'
import { H1, P } from 'src/components/typography'
import { Button } from 'src/components/buttons'
function Welcome({ doContinue }) {
return (
<div className="text-center flex flex-col items-center justify-center w-full h-full">
<H1 className="text-5xl">Welcome to the Lamassu Admin</H1>
<P className="text-2xl mb-14 text-comet">
To get you started, weve put together a wizard that will
<br />
help set up what you need before pairing your machines.
</P>
<Button size="xl" onClick={doContinue}>
Get started
</Button>
</div>
)
}
export default Welcome