aboutsummaryrefslogtreecommitdiffstats
path: root/packages
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2018-11-16 22:27:11 +0800
committerFabio Berger <me@fabioberger.com>2018-11-16 22:27:11 +0800
commit416fec7a970db042d9e0d51eec133678bcf6971d (patch)
treef2690ab8e672bca1c066f500f20d9f8a7c89be36 /packages
parent25d0b1e6e58987d0f00a5034158c2c514cf476d6 (diff)
downloaddexon-sol-tools-416fec7a970db042d9e0d51eec133678bcf6971d.tar
dexon-sol-tools-416fec7a970db042d9e0d51eec133678bcf6971d.tar.gz
dexon-sol-tools-416fec7a970db042d9e0d51eec133678bcf6971d.tar.bz2
dexon-sol-tools-416fec7a970db042d9e0d51eec133678bcf6971d.tar.lz
dexon-sol-tools-416fec7a970db042d9e0d51eec133678bcf6971d.tar.xz
dexon-sol-tools-416fec7a970db042d9e0d51eec133678bcf6971d.tar.zst
dexon-sol-tools-416fec7a970db042d9e0d51eec133678bcf6971d.zip
Add disclaimer
Diffstat (limited to 'packages')
-rw-r--r--packages/website/ts/pages/launch_kit/launch_kit.tsx29
1 files changed, 29 insertions, 0 deletions
diff --git a/packages/website/ts/pages/launch_kit/launch_kit.tsx b/packages/website/ts/pages/launch_kit/launch_kit.tsx
index 5e5b37d44..7a3be84b3 100644
--- a/packages/website/ts/pages/launch_kit/launch_kit.tsx
+++ b/packages/website/ts/pages/launch_kit/launch_kit.tsx
@@ -27,6 +27,7 @@ interface LaunchKitState {
const THROTTLE_TIMEOUT = 100;
const lighterBackgroundColor = '#222222';
const darkerBackgroundColor = '#1B1B1B';
+const grayText = '#999999';
interface Benefit {
icon: string;
@@ -63,6 +64,7 @@ export class LaunchKit extends React.Component<LaunchKitProps, LaunchKitState> {
{this._renderHero()}
{this._renderSection()}
{this._renderCallToAction()}
+ {this._renderDisclaimer()}
<Footer
backgroundColor={darkerBackgroundColor}
translate={this.props.translate}
@@ -288,6 +290,33 @@ export class LaunchKit extends React.Component<LaunchKitProps, LaunchKitState> {
</Container>
);
}
+ private _renderDisclaimer(): React.ReactNode {
+ return (
+ <Container
+ className="clearfix"
+ backgroundColor={darkerBackgroundColor}
+ paddingTop="70px"
+ paddingBottom="70px"
+ >
+ <Container className="mx-auto" width="890px">
+ <Text fontColor={grayText} fontSize="10px">
+ <b>Disclaimer:</b> 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 Inc. (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.
+ </Text>
+ <Container paddingTop="15px">
+ <Text fontColor={grayText} fontSize="10px">
+ See the Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0) for the
+ specific language governing all applicable permissions and limitations.
+ </Text>
+ </Container>
+ </Container>
+ </Container>
+ );
+ }
private _updateScreenWidth(): void {
const newScreenWidth = utils.getScreenWidth();
if (newScreenWidth !== this.state.screenWidth) {