import * as React from 'react'; import {BlockIconLink} from 'ts/@next/components/blockIconLink'; import {Section} from 'ts/@next/components/newLayout'; import {AnimatedChatIcon} from 'ts/@next/components/animatedChatIcon'; import {AnimatedCompassIcon} from 'ts/@next/components/animatedCompassIcon'; interface Props { onContactClick?: () => void; } export const SectionLandingCta = (props: Props) => (
} title="Ready to build on 0x?" linkLabel="Get Started" linkUrl="https://0x.org/docs" /> } title="Want help from the 0x team?" linkLabel="Get in Touch" linkAction={props.onContactClick} />
);