aboutsummaryrefslogblamecommitdiffstats
path: root/packages/website/ts/@next/components/sections/landing/cta.tsx
blob: 4c06982e4a638a97384d4e0487654a1ce7280979 (plain) (tree)
1
2
3
4
5
6
7
8
9


                                                                    
                                                                        

                                                            
                                                              
 
                                                                
 


















                                              

              
import * as React from 'react';
import {Button, ButtonWrap, Link} from 'ts/@next/components/button';
import {Icon, InlineIconWrap} from 'ts/@next/components/icon';
import {Wrap, WrapCentered, WrapGrid} from 'ts/@next/components/layout';
import {Heading, Paragraph} from 'ts/@next/components/text';

import {Column, Section} from 'ts/@next/components/newLayout';

import {BlockIconLink} from 'ts/@next/components/blockIconLink';

export const SectionLandingCta = () => (
    <Section
        isPadded={false}
        isFullWidth={true}
        isFlex={true}
        flexBreakpoint="900px"
    >
        <BlockIconLink
            icon=""
            title="Ready to build on 0x?"
            linkLabel="Get Started"
            linkUrl="#"
        />
        <BlockIconLink
            icon="coin"
            title="Wat help from the 0x team?"
            linkLabel="Get in Touch"
            linkUrl="#"
        />
    </Section>
);