File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ import PropTypes from 'prop-types';
33import DemoButton from '../DemoButton/DemoButton' ;
44import PathSelectionOverlay from '../PathSelectionOverlay/PathSelectionOverlay' ;
55
6+ const TERMS_OF_USE_URL = 'https://watson-developer-cloud.github.io/terms?name=Watson%20Assistant%20Demo' ;
67class SelectionSidebar extends React . Component {
78 constructor ( props ) {
89 super ( props ) ;
@@ -56,6 +57,12 @@ class SelectionSidebar extends React.Component {
5657 />
5758 < p className = "ibm-type-a" > See all features</ p >
5859 </ div >
60+ < div className = "path-selection__terms-of-use" >
61+ By using this application, you agree to the
62+ < a target = "_blank" rel = "noreferrer noopener" href = { TERMS_OF_USE_URL } >
63+ Terms of Use
64+ </ a >
65+ </ div >
5966 < PathSelectionOverlay
6067 isOverlayVisible = { this . state . isOverlayVisible }
6168 onEnter = { ( ) => { this . onEnter ( ) ; } }
Original file line number Diff line number Diff line change 4545 background : $duo-blue-60 ;
4646 }
4747 }
48+ .path-selection__terms-of-use {
49+ padding-top : 8px ;
50+
51+ a {
52+ color : $duo-blue-60 ;
53+ }
54+ }
4855 }
4956}
You can’t perform that action at this time.
0 commit comments