refactor(ui): introduce landing page + minor fixes

This commit is contained in:
liyasthomas
2021-07-19 18:42:33 +05:30
parent f1ad7b9ef5
commit 68c00433f5
17 changed files with 162 additions and 124 deletions

View File

@@ -1,5 +1,5 @@
<template>
<section :id="label.toLowerCase()">
<section :id="label.toLowerCase()" class="flex flex-col flex-1">
<slot></slot>
</section>
</template>

View File

@@ -19,12 +19,13 @@ export default {
data() {
return {
primaryNavigation: [
{ target: "index", icon: "home", title: "Home" },
{ target: "index", icon: "apps", title: "App" },
{ target: "realtime", icon: "language", title: "Realtime" },
{ target: "graphql", icon: "code", title: "GraphQL" },
{ target: "doc", icon: "book", title: "Docs" },
{ target: "documentation", icon: "book", title: "Doc" },
{ target: "profile", icon: "person", title: "Profile" },
{ target: "settings", icon: "settings", title: "Settings" },
{ target: "home", icon: "home", title: "Home" },
],
}
},