2022-11-09 10:18:42 +01:00
|
|
|
<template>
|
2022-11-24 01:00:30 +01:00
|
|
|
<nav>
|
2022-11-19 13:20:15 +01:00
|
|
|
|
2022-11-24 01:00:30 +01:00
|
|
|
<NavHeader/>
|
2022-11-19 13:20:15 +01:00
|
|
|
|
2022-11-24 01:00:30 +01:00
|
|
|
<!-- title -->
|
|
|
|
<div class='text-center'>
|
|
|
|
<nuxt-link class='text-h3 text-decoration-none' v-text='settings.title' to='/' />
|
|
|
|
<div class='text-body-1 font-weight-light' v-text='settings.description' />
|
|
|
|
</div>
|
2022-11-19 13:20:15 +01:00
|
|
|
|
2022-11-24 01:00:30 +01:00
|
|
|
<NavSearch/>
|
2022-11-09 10:18:42 +01:00
|
|
|
|
2022-11-24 01:00:30 +01:00
|
|
|
<NavBar />
|
2022-11-09 10:18:42 +01:00
|
|
|
|
2022-11-24 01:00:30 +01:00
|
|
|
</nav>
|
2022-11-09 10:18:42 +01:00
|
|
|
|
|
|
|
|
2020-07-25 21:41:22 +02:00
|
|
|
|
2019-04-03 00:25:12 +02:00
|
|
|
</template>
|
|
|
|
<script>
|
2019-06-25 01:05:38 +02:00
|
|
|
import { mapState } from 'vuex'
|
2022-11-24 01:00:30 +01:00
|
|
|
import NavHeader from './NavHeader.vue'
|
|
|
|
import NavBar from './NavBar.vue'
|
|
|
|
import NavSearch from './NavSearch.vue'
|
2019-05-30 12:04:14 +02:00
|
|
|
|
2019-04-03 00:25:12 +02:00
|
|
|
export default {
|
2022-11-19 13:20:15 +01:00
|
|
|
name: 'Appbar',
|
2022-11-24 01:00:30 +01:00
|
|
|
components: { NavHeader, NavBar, NavSearch },
|
|
|
|
computed: mapState(['settings'])
|
2019-04-03 00:25:12 +02:00
|
|
|
}
|
|
|
|
</script>
|
2022-11-24 01:00:30 +01:00
|
|
|
<style>
|
|
|
|
nav {
|
|
|
|
background-image: linear-gradient(rgba(59, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(/headerimage.png);
|
|
|
|
background-position: center center;
|
|
|
|
background-size: cover;
|
|
|
|
}
|
|
|
|
|
|
|
|
.theme--light nav {
|
|
|
|
background-image: linear-gradient(to bottom, rgba(255,230,230,.95), rgba(250,250,250,.95)), url(/headerimage.png);
|
|
|
|
}
|
|
|
|
</style>
|