Add client side components

This commit is contained in:
2019-11-07 21:20:58 +03:00
parent 0f01d2ad01
commit 329fa48fc1
16 changed files with 7855 additions and 0 deletions

18
public/assets/main.css Normal file
View File

@ -0,0 +1,18 @@
#app {
font-family: "Avenir", Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
}
#nav {
padding: 30px;
}
#nav a {
font-weight: bold;
color: #2c3e50;
}
#nav a.router-link-exact-active {
color: #42b983;
}

228
public/assets/main.js Normal file

File diff suppressed because one or more lines are too long

BIN
public/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

15
public/index.html Normal file
View File

@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="icon" href="/favicon.ico">
<link rel="stylesheet" type="text/css" href="/assets/main.css">
<title>dayoff</title>
</head>
<body>
<div id="app"></div>
</body>
<script type="text/javascript" src="/assets/main.js"></script>
</html>