import * as _ from 'lodash'; import * as React from 'react'; import { Banner } from 'ts/components/banner'; import { Button } from 'ts/components/button'; import { CheckedLi, CheckedUl } from 'ts/components/checkmark_list'; import { Definition } from 'ts/components/definition'; import { DocumentTitle } from 'ts/components/document_title'; import { Hero } from 'ts/components/hero'; import { Section } from 'ts/components/newLayout'; import { ShowcaseSection } from 'ts/components/showcase_section'; import { SimpleDefinition } from 'ts/components/simple_definition'; import { SiteWrap } from 'ts/components/siteWrap'; import { Heading, Paragraph } from 'ts/components/text'; import { constants } from 'ts/utils/constants'; import { documentConstants } from 'ts/utils/document_meta_constants'; import { BackgroundMarquee } from '../components/background_marquee'; import { ModalContact } from '../components/modals/modal_contact'; const offersData = [ { title: 'Accelerate Your Development', description: 'Let Launch Kit take care of the complexities of building a relayer. The codebase allows you to connect to wallets, wrap ETH, make and take orders, and get notified of order state changes so you can spend more time on making your relayer your own.', showcaseUrl: 'images/launch_kit/relayer_screenshot.png', links: [ { label: 'Get Started', url: `${constants.URL_LAUNCH_KIT}`, }, { label: 'Live Demo', url: `${constants.URL_LAUNCH_KIT_ERC20_DEMO}`, }, ], }, { title: 'Create a Market for Your Tokens', description: 'Launch Kit supports all ERC-20 and ERC-721 tokens out of the box. Trade commodities with the ERC-20 exchange interface, or bid on crypto collectibles with the ERC-721 marketplace interface.', showcaseUrl: 'images/launch_kit/NFT_screenshot.png', links: [ { label: 'Get Started', url: `${constants.URL_LAUNCH_KIT}`, }, { label: 'Live Demo', url: `${constants.URL_LAUNCH_KIT_ERC721_DEMO}`, }, ], }, ]; const featuresList = [ [ 'React UI for ERC-20 & ERC-721 tokens', 'Market & Limit Orders', 'Automatic Order Validation', 'Order Status Notifications', 'Dutch Auctions for ERC-721 tokens', ], [ 'Docker Image for One-Click Deploy', 'Standard Relayer API for Sharing Orders', 'Wrapped ETH Abstraction for Easy Market Buys', 'Support for all Web3 Wallets', ], ]; export class NextLaunchKit extends React.Component { public state = { isContactModalOpen: false, }; public render(): React.ReactNode { return ( } actions={} sectionPadding={'120px 0 180px 0'} />
{_.map(offersData, (item, index) => ( ))}
Features {_.map(featuresList, (details: string[], listIndex: number) => ( {_.map(details, (detail: string, detailIndex: number) => ( {detail} ))} ))}
Disclaimer: The laws and regulations applicable to the use and exchange of digital assets and blockchain-native tokens, including through any software developed using the licensed work created by ZeroEx Intl. (the “Work”), vary by jurisdiction. As set forth in the Apache License, Version 2.0 applicable to the Work, developers are “solely responsible for determining the appropriateness of using or redistributing the Work,” which includes responsibility for ensuring compliance with any such applicable laws and regulations. See the Apache License, Version 2.0 for the specific language governing all applicable permissions and limitations.
); } public _onOpenContactModal = (): void => { this.setState({ isContactModalOpen: true }); }; public _onDismissContactModal = (): void => { this.setState({ isContactModalOpen: false }); }; } const HeroActions = () => ( );