forked from utkarshg6/blockchain-carbon-cost-visualizer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
98f587d
commit e4a12bf
Showing
4 changed files
with
596 additions
and
711 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,32 @@ | ||
import React, { Component } from 'react' | ||
import { Segment, Header } from 'semantic-ui-react'; | ||
|
||
import React, { Component } from "react"; | ||
import { Segment, Header } from "semantic-ui-react"; | ||
|
||
class WhatsThisSection extends Component { | ||
render() { | ||
return ( | ||
<Segment | ||
style={{ width: '700px', height: '250px', color: 'black' }} | ||
> | ||
<Header | ||
style={{ | ||
marginTop: '10px', | ||
fontSize: '30px' | ||
}} | ||
as='h2' | ||
> | ||
Disclaimer | ||
</Header> | ||
<p style={{ | ||
fontSize: '16px', | ||
marginLeft: '50px', | ||
marginRight: '50px' | ||
}}> | ||
While we have tried to use our best judgement and the most reliable sources of information available, | ||
the values shown on this website are still approximations! We are attempting to show the relative carbon | ||
emissions from various comparable transactions for one Smart Contract, | ||
and these values may vary based on the individual implementations of other contracts. | ||
We assume no liability for the accuracy of these values whatsoever. | ||
</p> | ||
</Segment> | ||
) | ||
} | ||
render() { | ||
return ( | ||
<Segment style={{ width: "700px", height: "250px", color: "black" }}> | ||
<Header | ||
style={{ | ||
marginTop: "10px", | ||
fontSize: "30px", | ||
}} | ||
as="h2" | ||
> | ||
Disclaimer | ||
</Header> | ||
<p | ||
style={{ | ||
fontSize: "16px", | ||
marginLeft: "50px", | ||
marginRight: "50px", | ||
}} | ||
> | ||
While we have used our best judgement and the most reliable sources of information available, the values shown on this website are still approximations! Our intent is to show the relative carbon emissions from various comparable transactions for selected Smart Contracts, and these values | ||
may vary for other Smart Contracts. We assume no liability for the accuracy of these values whatsoever. | ||
</p> | ||
</Segment> | ||
); | ||
} | ||
} | ||
|
||
export default WhatsThisSection | ||
export default WhatsThisSection; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.