blob: 17c08849743c0839f2cb7a0aab4a127430c5788b [file] [log] [blame]
<template>
<div class="page-title">
<h1>{{ title }}</h1>
<p v-if="description">{{ description }}</p>
</div>
</template>
<script>
export default {
name: 'PageTitle',
props: {
description: {
type: String,
default: ''
}
},
data() {
return {
title: this.$t(this.$route.meta.title)
};
}
};
</script>
<style lang="scss" scoped>
.page-title {
margin-bottom: $spacer * 2;
}
h1 {
font-weight: $display4-weight;
line-height: $display-line-height;
}
p {
max-width: 72ch;
}
</style>