summary refs log tree commit diff stats
path: root/client/src/components/Header.vue
blob: 2eedc83b0fde7e78397fdf7ef9915aada0dfdd18 (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
39
40
41
42
43
<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: 'Create Smiles',
                    icon: 'pi pi-fw pi-user-plus',
                    to: '/create'
                },
                {
                    label: 'huh',
                    icon: 'pi pi-fw pi-user-plus',
                    to: '/5a1PNZAMafXGGEFU17xcRX3bx6wyebeK/lNtEBCOd5yLlXT5enRQoh4ai4q3vcg7F'
                }
            ]
        }
    }
}
</script>

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