ソースを参照

Optimize for lighthouse

Adding description.
Finally fixing the main menu.
Ecconia 7 年 前
コミット
ee807d84e1
2 ファイル変更8 行追加3 行削除
  1. 1 0
      public/index.html
  2. 7 3
      src/App.vue

+ 1 - 0
public/index.html

@@ -6,6 +6,7 @@
     <meta name="viewport" content="width=device-width,initial-scale=1.0">
     <meta name="theme-color" content="#111111">
     <link rel="icon" href="<%= BASE_URL %>favicon.ico">
+    <meta name="Description" content="Website of the RedstoneServer. You can create your applications here to be come member. Chat with other members and see who else plays on this server.">
     <title>New RS-Website</title>
   </head>
   <body>

+ 7 - 3
src/App.vue

@@ -5,9 +5,9 @@
 		<div class="menu">
 			<h4>Menu:</h4>
 			<ul>
-				<router-link to="/"><li>Startpage</li></router-link>
-				<router-link to="/applications"><li>Applications</li></router-link>
-				<router-link to="/devblog"><li>Development Blog</li></router-link>
+				<li><router-link class="rl" to="/">Startpage</router-link></li>
+				<li><router-link class="rl" to="/applications">Applications</router-link></li>
+				<li><router-link class="rl" to="/devblog">Development Blog</router-link></li>
 			</ul>
 		</div>
 		<div class="content">
@@ -47,6 +47,10 @@
 		border-top: solid 1px;
 	}
 
+	.menu li .rl {
+		color: #aaa;
+	}
+
 	.menu a {
 		text-decoration: none;
 	}