brotherton-erpnext/erpnext/public/js/education/web-academy/components/AcademyTopSection.vue
2019-02-19 13:06:30 +05:30

24 lines
650 B
Vue

<template>
<section class='top-section'>
<div class='container'>
<div class='text-center'>
<!-- <img class="main-illustration" src='/assets/erpnext_com/img/erpnext_com_illustration.png'
style='width: 700px;'> -->
</div>
<h1 v-html="title"></h1>
<ul class="list-group">
</ul>
<p class='lead' v-html="description"></p>
<p class="mt-4">
<a class="btn btn-primary btn-lg" href="/enroll">Explore Courses</a>
</p>
</div>
</section>
</template>
<script>
import AcademyTopSectionButton from "./AcademyTopSectionButton.vue"
export default {
props: ['title', 'description', 'buttonName'],
name: "AcademyTopSection",
};
</script>