summary refs log tree commit diff stats
path: root/client/src/components/Header.vue
blob: 8ab29b2b58b8e139ee64530e96672629b327ef8a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<template>
<div>
  <Menubar :model="items">
    <template #start>
      <p id="header-title">Vela</p>
    </template>
  </Menubar>
</div>
</template>

<script>
export default {
    data() {
        return {
            items: [
                {
                    label:'Home',
                    icon:'pi pi-fw pi-home',
                    to:'/'
                },
                {
                    label:'New Smile',
                    icon:'pi pi-fw pi-user-plus',
                    to:'/new'
                },
            ]
        }
    }
}
</script>

<style scoped>
#header-title {
    margin: 0 1ch 0 0;
    font-size: 150%;
    font-family: "Iosevka Etoile", serif;
}
</style>