28 lines
435 B
Vue
Raw Normal View History

2018-10-30 18:25:49 +05:30
<template>
2019-02-19 18:25:07 +05:30
<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 18:25:49 +05:30
</template>
<script>
2018-11-03 18:03:01 +05:30
2018-10-30 18:25:49 +05:30
export default {
2018-11-03 16:14:34 +05:30
props: ['title', 'description'],
2018-11-13 17:24:07 +05:30
name: "TopSection",
2018-10-30 18:25:49 +05:30
};
2019-02-19 18:25:07 +05:30
</script>
<style scoped>
.hero {
padding-top: 50px;
padding-bottom: 100px;
}
.hero h1 {
font-size: 40px;
font-weight: 200;
}
</style>