From 94d28b0216294f6d817394049a7927b955bccc53 Mon Sep 17 00:00:00 2001
From: Markus Opolka <markus@martialblog.de>
Date: Wed, 18 Oct 2017 10:17:31 +0200
Subject: [PATCH] Change description and colouring

---
 README.md    | 9 ++++-----
 index.html   | 2 +-
 package.json | 4 ++--
 src/App.vue  | 4 ++--
 4 files changed, 9 insertions(+), 10 deletions(-)

diff --git a/README.md b/README.md
index 7992571..aa8387f 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,4 @@
-# frontend
-
-> A Vue.js project
+# Letters
 
 ## Build Setup
 
@@ -11,11 +9,12 @@ npm install
 # serve with hot reload at localhost:8080
 npm run dev
 
+# serve API at localhost:3000
+npm run api
+
 # build for production with minification
 npm run build
 
 # build for production and view the bundle analyzer report
 npm run build --report
 ```
-
-For a detailed explanation on how things work, check out the [guide](http://vuejs-templates.github.io/webpack/) and [docs for vue-loader](http://vuejs.github.io/vue-loader).
diff --git a/index.html b/index.html
index cb10f12..f5f39b4 100644
--- a/index.html
+++ b/index.html
@@ -3,7 +3,7 @@
   <head>
     <meta charset="utf-8">
     <link href='https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons' rel="stylesheet">
-    <title>frontend</title>
+    <title>The Letter Project</title>
   </head>
   <body>
     <div id="app"></div>
diff --git a/package.json b/package.json
index 34009f6..dcab4a8 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
 {
-  "name": "frontend",
+  "name": "massicot-letters",
   "version": "1.0.0",
-  "description": "A Vue.js project",
+  "description": "Massicot Letter Project",
   "author": "Markus Opolka <markus@martialblog.de>",
   "private": true,
   "scripts": {
diff --git a/src/App.vue b/src/App.vue
index 934e3b3..c2f6279 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -28,7 +28,7 @@
       </v-list>
     </v-navigation-drawer>
 
-    <v-toolbar color="indigo" dark fixed app>
+    <v-toolbar color="indigo darken-4" dark fixed app>
       <v-toolbar-side-icon @click.stop="drawer = !drawer"></v-toolbar-side-icon>
       <v-toolbar-title>{{name}}</v-toolbar-title>
       <v-spacer></v-spacer>
@@ -42,7 +42,7 @@
         </v-content>
       </v-fade-transition>
     </main>
-    <v-footer color="indigo" app>
+    <v-footer color="indigo darken-4" app>
       <span class="white--text">&copy; 2017 Friedrich-Alexander-Universität Erlangen-Nürnberg</span>
     </v-footer>
  </v-app>
-- 
GitLab