forked from inovizz/lms
-
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.
Create account if member doesn't exists in blockchain
- Loading branch information
1 parent
412622c
commit c6f3768
Showing
32 changed files
with
761 additions
and
306 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,8 +1,8 @@ | ||
.DS_STORE | ||
.idea | ||
app/config.js | ||
build | ||
coverage | ||
dist/** | ||
installed_contracts | ||
node_modules | ||
npm-debug.log | ||
|
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
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
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import React from 'react' | ||
|
||
const Banner = () => ( | ||
<div className='row yogalogo'> | ||
<div className='col-sm-6'> | ||
<div className='yoga-wrapper'> | ||
<img width = '1016' | ||
height = '590' | ||
src = 'http://www.pramati.com/wp-content/uploads/2017/03/Triad-01.png' | ||
className = 'vc_single_image-img attachment-large' | ||
alt = '' | ||
sizes = '(max-width: 1016px) 100vw, 1016px' /> | ||
</div> | ||
</div> | ||
<div className='col-sm-6'> | ||
<div className='yoga-header'> | ||
<h1>Yoga for the mind</h1> | ||
</div> | ||
<div className='yoga-subheader'> | ||
<h4>Get Rewarded for Reading</h4> | ||
</div> | ||
</div> | ||
</div> | ||
) | ||
|
||
export default Banner |
Oops, something went wrong.