-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Design improvements + Multiple updates
- Loading branch information
Showing
17 changed files
with
339 additions
and
139 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
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,36 @@ | ||
import React from 'react'; | ||
import { Link } from 'react-router-dom'; | ||
import {Container, Grid, Icon} from "semantic-ui-react"; | ||
|
||
const Footer = () => { | ||
return ( | ||
<div className="footer ui inverted"> | ||
<Container> | ||
<Grid columns={3} divided> | ||
<Grid.Column> | ||
<h4>About</h4> | ||
<p>React Big Bang - Ready to go React.js starter kit. </p> | ||
<p>Made with love by <a href="https://qwebdev.eu/" target="_blank" rel="noopener noreferrer">Qdev Techs</a> © 2018.</p> | ||
</Grid.Column> | ||
<Grid.Column> | ||
<h4>Services</h4> | ||
<ul> | ||
<li><Link to="home">Home</Link></li> | ||
<li><Link to="documentation">Documentation</Link></li> | ||
<li><Link to="example">API Example</Link></li> | ||
</ul> | ||
</Grid.Column> | ||
<Grid.Column className="social"> | ||
<h4>Follow us on social media</h4> | ||
<a href="https://www.facebook.com/qwebdev/" target="_blank" rel="noopener noreferrer"><Icon name="facebook" size='big'/></a> | ||
<a href="https://twitter.com/Qwebdev" target="_blank" rel="noopener noreferrer"><Icon name="twitter" size='big'/></a> | ||
<a href="https://www.instagram.com/q.dev/" target="_blank" rel="noopener noreferrer"><Icon name="instagram" size='big'/></a> | ||
<a href="https://www.linkedin.com/company/qdev" target="_blank" rel="noopener noreferrer"><Icon name="linkedin" size='big'/></a> | ||
</Grid.Column> | ||
</Grid> | ||
</Container> | ||
</div> | ||
); | ||
}; | ||
|
||
export default Footer; |
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,38 @@ | ||
import React from 'react'; | ||
import { Link } from 'react-router-dom'; | ||
import {Button, Container, Icon, Menu} from "semantic-ui-react"; | ||
|
||
import PropTypes from 'prop-types'; | ||
|
||
const MainMenu = (props) => { | ||
|
||
return ( | ||
<div className="homeNavBarContainer"> | ||
<Container> | ||
<Menu size='huge' inverted className="homeNavBar"> | ||
<Link className={props.history.location.pathname == '/' || props.history.location.pathname == '/home' ? "item active" : "item"} to="/home">Home</Link> | ||
<Link className={props.history.location.pathname == '/documentation' ? "item active" : "item"} to="documentation">Documentation</Link> | ||
<Link className={props.history.location.pathname == '/example' ? "item active" : "item"} to="example">API Example</Link> | ||
<Menu.Menu position='right'> | ||
<Menu.Item> | ||
<a href="https://alkanyx.com/" target="_blank" rel="noopener noreferrer"> | ||
<Button inverted color='green' style={{display:'inline-block'}} size='large'>Alkanyx</Button> | ||
</a> | ||
</Menu.Item> | ||
<Menu.Item> | ||
<a href="https://github.com/theqdev/react-big-bang" target="_blank" rel="noopener noreferrer"> | ||
<Button inverted color='blue' size='large'><Icon name="github"></Icon>Github</Button> | ||
</a> | ||
</Menu.Item> | ||
</Menu.Menu> | ||
</Menu> | ||
</Container> | ||
</div> | ||
); | ||
}; | ||
|
||
MainMenu.propTypes = { | ||
history : PropTypes.object, | ||
}; | ||
|
||
export default MainMenu; |
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,49 @@ | ||
import React, { Component } from 'react' | ||
import {Container, Label} from 'semantic-ui-react' | ||
|
||
class Docs extends Component { | ||
|
||
componentDidMount(){ | ||
} | ||
|
||
componentDidUpdate(){ | ||
|
||
} | ||
|
||
render(){ | ||
return( | ||
<Container className="paddedContainer"> | ||
|
||
<h1>Documentation</h1> | ||
|
||
<h3>Overview</h3> | ||
<Label as='a' color='yellow' image>IN<Label.Detail>Development</Label.Detail></Label> | ||
|
||
<h3>Table of contents:</h3> | ||
<ul> | ||
<li>Routing</li> | ||
<li>Components</li> | ||
<li>Redux - Sagas - API</li> | ||
<li>UI & CSS</li> | ||
</ul> | ||
|
||
<h3>Routing</h3> | ||
<Label as='a' color='yellow' image>IN<Label.Detail>Development</Label.Detail></Label> | ||
|
||
<h3>Components</h3> | ||
<Label as='a' color='yellow' image>IN<Label.Detail>Development</Label.Detail></Label> | ||
|
||
<h3>Redux - Sagas - API</h3> | ||
<Label as='a' color='yellow' image>IN<Label.Detail>Development</Label.Detail></Label> | ||
|
||
<h3>UI & CSS</h3> | ||
<Label as='a' color='yellow' image>IN<Label.Detail>Development</Label.Detail></Label> | ||
|
||
</Container> | ||
) | ||
} | ||
|
||
|
||
} | ||
|
||
export default Docs |
Oops, something went wrong.