mirror of
https://github.com/Rakantor/personal-portfolio.git
synced 2025-12-17 19:36:32 +01:00
104 lines
2.6 KiB
Vue
104 lines
2.6 KiB
Vue
<template>
|
|
<v-app dark :style="{ background: $vuetify.theme.themes[theme].background }">
|
|
<v-navigation-drawer
|
|
v-model="drawer"
|
|
:mini-variant="miniVariant"
|
|
fixed
|
|
right
|
|
app
|
|
color="backgroundSecondary"
|
|
>
|
|
<v-list>
|
|
<v-list-item
|
|
v-for="(item, i) in items"
|
|
:key="i"
|
|
:to="item.to"
|
|
router
|
|
exact
|
|
>
|
|
<v-list-item-action>
|
|
<v-icon>{{ item.icon }}</v-icon>
|
|
</v-list-item-action>
|
|
<v-list-item-content>
|
|
<v-list-item-title v-text="item.title" />
|
|
</v-list-item-content>
|
|
</v-list-item>
|
|
<v-list-item :href="`mailto:${myEmail}`">
|
|
<v-list-item-action>
|
|
<v-icon>mdi-email</v-icon>
|
|
</v-list-item-action>
|
|
<v-list-item-content>
|
|
<v-list-item-title>Contact</v-list-item-title>
|
|
</v-list-item-content>
|
|
</v-list-item>
|
|
</v-list>
|
|
</v-navigation-drawer>
|
|
<v-app-bar fixed flat app color="transparent">
|
|
<v-avatar size="48" class="mr-3">
|
|
<img
|
|
src="@/assets/avatar_transparent.png"
|
|
alt="Manuel"
|
|
>
|
|
</v-avatar>
|
|
<v-toolbar-title class="text-subtitle-1" v-text="myName" />
|
|
<v-spacer />
|
|
<v-app-bar-nav-icon v-if="$vuetify.breakpoint.smAndDown" @click.stop="drawer = !drawer" />
|
|
<div v-else>
|
|
<v-btn plain to="/">Home</v-btn>
|
|
<v-btn plain to="/bio">About</v-btn>
|
|
<v-btn plain to="/portfolio">Work</v-btn>
|
|
<v-btn plain :href="`mailto:${myEmail}`">Contact</v-btn>
|
|
</div>
|
|
</v-app-bar>
|
|
<v-main>
|
|
<v-container>
|
|
<Nuxt />
|
|
</v-container>
|
|
</v-main>
|
|
<v-footer app absolute color="transparent">
|
|
<v-row justify="center" no-gutters>
|
|
<v-col cols="12" class="text-center">
|
|
<v-divider></v-divider>
|
|
<span class="text-caption">© {{ new Date().getFullYear() }} | {{ myName }}</span>
|
|
</v-col>
|
|
</v-row>
|
|
</v-footer>
|
|
</v-app>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'DefaultLayout',
|
|
data() {
|
|
return {
|
|
drawer: false,
|
|
items: [
|
|
{
|
|
icon: 'mdi-home',
|
|
title: 'Home',
|
|
to: '/',
|
|
},
|
|
{
|
|
icon: 'mdi-text-account',
|
|
title: 'About',
|
|
to: '/bio',
|
|
},
|
|
{
|
|
icon: 'mdi-briefcase',
|
|
title: 'Work',
|
|
to: '/portfolio',
|
|
}
|
|
],
|
|
miniVariant: false,
|
|
myName: 'Manuel Vogel',
|
|
myEmail: 'rakantor.dev@gmail.com'
|
|
}
|
|
},
|
|
computed: {
|
|
theme () {
|
|
return (this.$vuetify.theme.dark) ? 'dark' : 'light'
|
|
}
|
|
}
|
|
}
|
|
</script>
|