2018-10-30 12:55:49 +00:00
|
|
|
<template>
|
2019-02-19 12:55:07 +00:00
|
|
|
<div class="hero">
|
|
|
|
<h1 class="text-center" v-html="title"></h1>
|
|
|
|
<p class='text-center' v-html="description"></p>
|
|
|
|
<p class="text-center padding">
|
|
|
|
<slot></slot>
|
|
|
|
</p>
|
|
|
|
</div>
|
2018-10-30 12:55:49 +00:00
|
|
|
</template>
|
|
|
|
<script>
|
2018-11-03 12:33:01 +00:00
|
|
|
|
2018-10-30 12:55:49 +00:00
|
|
|
export default {
|
2018-11-03 10:44:34 +00:00
|
|
|
props: ['title', 'description'],
|
2018-11-13 11:54:07 +00:00
|
|
|
name: "TopSection",
|
2018-10-30 12:55:49 +00:00
|
|
|
};
|
2019-02-19 12:55:07 +00:00
|
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
.hero {
|
|
|
|
padding-top: 50px;
|
|
|
|
padding-bottom: 100px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hero h1 {
|
|
|
|
font-size: 40px;
|
|
|
|
font-weight: 200;
|
|
|
|
}
|
|
|
|
</style>
|