Skip to content

Commit

Permalink
add latest design and css
Browse files Browse the repository at this point in the history
  • Loading branch information
VincentKempers committed May 30, 2018
1 parent 46c7331 commit b4412a7
Show file tree
Hide file tree
Showing 9 changed files with 25 additions and 9 deletions.
Binary file modified assets/styleguide.sketch
Binary file not shown.
6 changes: 6 additions & 0 deletions development.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Dev solutions


# work with
- [ ] VueJS
- [ ] NodeJS
- [ ]

# Links
- [VueJS](https://vuejs.org/)
- [server side VueJS](https://ssr.vuejs.org/)
14 changes: 7 additions & 7 deletions dist/main.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/main.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ app.get('/', (req, res) => {
res.render('home');
})

app.get('/', (req, res) => {
res.render('home');
})

app.listen(4044, () => {
console.log("app runs at http://localhost:4044");
})
3 changes: 3 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,6 @@ An application that guides the gives a pleasureable guide to the user.
* To install `npm install`
* To run production `npm start`
* To run development `npm run dev`

# Our actual application
[Here it is.](https://github.com/VincentKempers/van-gogh-app)
1 change: 1 addition & 0 deletions src/style/index.scss
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
@import 'variable';
@import 'base.scss';
@import 'zerostate.scss';
Empty file added src/style/zerostate.scss
Empty file.
4 changes: 3 additions & 1 deletion views/home.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
<title>Van Gogh App</title>
</head>
<body>
<h1> Vincent van Gogh app </h1>
<section class="zero-state">

</section>
</body>
</html>

0 comments on commit b4412a7

Please sign in to comment.