aboutsummaryrefslogblamecommitdiffstats
path: root/packages/dev-tools-pages/ts/components/Intro.tsx
blob: 597dddce0affd9d8badb62e2154ee92af8b989db (plain) (tree)
1
2
3
4
5
6
7
8
9

                                       
                                             

                                           

                                  

                        
                                          


                                   




                                



                            

                                            



                           

                           
 
                                            








                                   










                                                                                                                       



                     
import * as React from 'react';
import styled from 'styled-components';
import { media, colors } from '../variables';

import { Alpha, Beta } from './Typography';
import Breakout from './Breakout';
import Code from './Code';

const Main = styled.div`
    background-color: ${colors.lightGray};
    padding: 6.25rem;
    display: flex;
    justify-content: space-between;

    ${media.small`
        padding: 2.5rem 1.875rem
        display: block;     
    `};
`;

const Title = styled(Alpha)`
    margin-bottom: 2.5rem;

    ${media.small`margin-bottom: 2.25rem;`};
`;

const Content = styled.div`
    max-width: 25.9375rem;
    display: flex;
    flex-direction: column;

    ${media.small`margin-bottom: 2.25rem;`};
`;

interface IntroProps {
    title: string;
    children: React.ReactNode;
}

function Intro(props: IntroProps) {
    return (
        <Breakout>
            <Main>
                <Content>
                    <Title>{props.title}</Title>
                    <Beta as="div">{props.children}</Beta>
                </Content>
                <Breakout>
                    <Code>Function execute transaction Function execute transaction Function execute transaction</Code>
                </Breakout>
            </Main>
        </Breakout>
    );
}

export default Intro;