NKBox Welcome

Thanks for submitting your account information. You're now ready to make live transactions with Inkbox!

import {Html, Body, Button, Container, Head, Hr, Img, Link, Preview, Section, Text, Font,} from '@react-email/components'


export const inkboxWelcome = () => {
    return (
        <Html>
            <Head>
                {/* <Font
                    fontFamily="Roboto"
                    fallbackFontFamily="Verdana"
                    webFont={{
                        url: "https://fonts.gstatic.com/s/roboto/v27/KFOmCnqEu92Fr1Mu4mxKKTU1Kg.woff2",
                        format: "woff2",
                    }}
                    fontWeight={400}
                    fontStyle="normal"
                /> */}
            </Head>
            <Body style={main}>
                <Preview>You're now ready to make live transactions with Inlbox!</Preview>

                <Container style={container} >
                    <Text >
                        Thanks for submitting your account information. You're now ready to
                        make live transactions with Inkbox!
                    </Text>
                </Container>
            </Body>
        </Html>
    )
}


export default inkboxWelcome;

const main = {
    backgroundColor: '#f6f9fc',
    fontFamily:
        '-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Ubuntu,sans-serif',
};

const container = {
    backgroundColor: '#ffffff',
    margin: '0 auto',
    padding: '20px 0 48px',
    marginBottom: '64px',
};