Initial commit.

A WIP front end.
This commit is contained in:
FireMasterK
2020-11-11 14:50:57 +05:30
parent ec24841f1a
commit 14a1d96c65
10 changed files with 1541 additions and 222 deletions

View File

@@ -1,26 +1,37 @@
<template>
<img alt="Vue logo" src="./assets/logo.png">
<HelloWorld msg="Welcome to Your Vue.js App"/>
</template>
<script>
import HelloWorld from './components/HelloWorld.vue'
export default {
name: 'App',
components: {
HelloWorld
}
}
</script>
<style>
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
</style>
<template>
<nav class="uk-navbar-container uk-container-expand uk-light" style="background:#0b0e0f" uk-navbar>
<div class="uk-navbar-left">
<router-link class="uk-navbar-item uk-logo uk-text-bold" to="/">Piped</router-link>
</div>
<div class="uk-navbar-right">
<ul class="uk-navbar-nav">
<li>
<router-link to="/login">Login</router-link>
</li>
<li>
<router-link to="/feed">Feed</router-link>
</li>
</ul>
</div>
</nav>
<div class="uk-container uk-light" style="background:#0b0e0f">
<router-view />
</div>
</template>
<script>
export default {
data() {
return {
}
}
}
</script>
<style>
#app {
background: #0b0e0f;
}
</style>