-
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.
feat(navigation): adding simplified navigation
- Loading branch information
Laszlo Heves
committed
Apr 27, 2017
1 parent
1280730
commit 4241d61
Showing
5 changed files
with
55 additions
and
34 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,19 +1,23 @@ | ||
import React from 'react'; | ||
import Navigation from '../Navigation'; | ||
import Portfolio from '../Portfolio'; | ||
import '../../styles.scss'; | ||
|
||
|
||
export default class App extends React.Component { | ||
render() { | ||
return ( | ||
<div className="container"> | ||
<main className="main"> | ||
<section className="about"> | ||
<h1><span className="emphasis">👋🏻 Hello,</span> my name is Laszlo Heves.</h1> | ||
<blockquote>I'm a Senior Frontend Developer with eight years of experience building medium and large sized websites and web applications with an emphasis on developing user interface related features from UX planning through site-build to deployment.</blockquote> | ||
</section> | ||
<Portfolio/> | ||
</main> | ||
<div> | ||
<Navigation /> | ||
<div className="container"> | ||
<main className="main"> | ||
<section className="about"> | ||
<h1><span className="emphasis">👋🏻 Hello,</span> my name is Laszlo Heves.</h1> | ||
<blockquote>I'm a Senior Frontend Developer with eight years of experience building medium and large sized websites and web applications with an emphasis on developing user interface related features from UX planning through site-build to deployment.</blockquote> | ||
</section> | ||
<Portfolio/> | ||
</main> | ||
</div> | ||
</div>); | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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