forked from reactathon-orangebox/LearnLive
-
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.
Merge pull request reactathon-orangebox#19 from Derrick83/master
jkajk;asdf
- Loading branch information
Showing
8 changed files
with
217 additions
and
14 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
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,73 @@ | ||
import React, { Component } from 'react'; | ||
import { Icon } from 'semantic-ui-react'; | ||
|
||
export default class Designs extends Component { | ||
render() { | ||
return ( | ||
<div> | ||
|
||
<div> | ||
<div className= "thumbnail col-md-3 col-sm-6 col-xs-12"> | ||
<img src="https://microlancer.lancerassets.com/v2/services/35/645a40996311e68debe37d11b16062/large_Stationery.jpg"/> | ||
<a href="#" className="btn btn-warning btn-lg btn-block">LIVE <Icon name='check circle outline'/></a> | ||
</div> | ||
</div> | ||
|
||
<div> | ||
<div className= "thumbnail col-md-3 col-sm-6 col-xs-12"> | ||
<img src="https://microlancer.lancerassets.com/v2/services/09/3c1da0f54611e7ace8af3cb4b366b6/large_brandbusters-custom-logo-design.jpg"/> | ||
<a href="#" className="btn btn-default btn-lg btn-block">8:15 PM PST <Icon name='clock outline'/></a> | ||
</div> | ||
</div> | ||
|
||
<div> | ||
<div className= "thumbnail col-md-3 col-sm-6 col-xs-12"> | ||
<img src="https://microlancer.lancerassets.com/v2/services/33/b507a0f54511e7afda372793a91044/large_icon-set-design.jpg"/> | ||
<a href="#" className="btn btn-default btn-lg btn-block">9:00 PM PST <Icon name='clock outline'/></a> | ||
</div> | ||
</div> | ||
|
||
<div> | ||
<div className= "thumbnail col-md-3 col-sm-6 col-xs-12"> | ||
<img src="https://microlancer.lancerassets.com/v2/services/ca/35bc70f54411e7b90d2320165a3ed2/large_custom-poster-design.jpg"/> | ||
<a href="#" className="btn btn-default btn-lg btn-block">9:15 PM PST <Icon name='clock outline'/></a> | ||
</div> | ||
</div> | ||
|
||
<div> | ||
<div className= "thumbnail col-md-3 col-sm-6 col-xs-12"> | ||
<img src="https://microlancer.lancerassets.com/v2/services/9a/d99de0434b11e6b2ae1be455cdb995/large__original_arabiclogodesign.jpg"/> | ||
<a href="#" className="btn btn-default btn-lg btn-block">9:20 PM PST <Icon name='clock outline'/></a> | ||
</div> | ||
</div> | ||
|
||
|
||
<div> | ||
<div className= "thumbnail col-md-3 col-sm-6 col-xs-12"> | ||
<img src="https://microlancer.lancerassets.com/v2/services/86/ae37f093f311e79da547e3b0b27668/large_design-service01.jpg"/> | ||
<a href="#" className="btn btn-default btn-lg btn-block">9:45 PM PST <Icon name='clock outline'/></a> | ||
</div> | ||
</div> | ||
|
||
<div> | ||
<div className= "thumbnail col-md-3 col-sm-6 col-xs-12"> | ||
<img src="http://creativetweaks.co.za/wp-content/uploads/2016/11/stationery-design-creative-tweaks.jpg"/> | ||
<a href="#" className="btn btn-default btn-lg btn-block">10:15 PM PST <Icon name='clock outline'/></a> | ||
</div> | ||
</div> | ||
|
||
<div> | ||
<div className= "thumbnail col-md-3 col-sm-6 col-xs-12"> | ||
<img src="http://walldiskpaper.com/wp-content/uploads/2014/10/Design-Wallpaper-Image-Picture.jpg"/> | ||
<a href="#" className="btn btn-default btn-lg btn-block">10:30 PM PST <Icon name='clock outline'/></a> | ||
</div> | ||
</div> | ||
|
||
|
||
|
||
</div> | ||
); | ||
} | ||
} | ||
|
||
|
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,14 @@ | ||
import React, { Component } from 'react'; | ||
import Designs from './Design.js' | ||
|
||
export default class SubjectsList extends Component { | ||
render() { | ||
return ( | ||
<div className="container-fluid"> | ||
<div className="row"> | ||
<Designs /> | ||
</div> | ||
</div> | ||
); | ||
} | ||
} |
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