Add description in Header + Change title

This commit is contained in:
2020-12-18 02:27:15 +01:00
parent 0b7b64231d
commit c77fe19ed1
2 changed files with 12 additions and 4 deletions

View File

@@ -1,7 +1,7 @@
<template>
<header
id="header"
class="fixed top-0 left-0 w-screen bg-white h-16 px-4 py-3 shadow-md"
class="fixed top-0 left-0 w-screen bg-white h-16 px-4 py-3 shadow-md flex items-center justify-between"
>
<router-link to="/" class="flex w-auto h-full items-center">
<img
@@ -9,14 +9,22 @@
src="https://avatars2.githubusercontent.com/u/1080062?s=200&v=4"
alt="PeopleDoc - Icon"
/>
<h1 class="text-2xl font-light tracking-wide">Ghibli</h1>
<h1 class="text-2xl font-light tracking-wide">PeopleDoc</h1>
</router-link>
<h2 class="font-medium hidden sm:block">{{ description }}</h2>
</header>
</template>
<script>
import pkg from "@/package.json";
export default {
name: "Header"
name: "Header",
computed: {
description: function() {
return pkg.description;
}
}
};
</script>