Banner.vue 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. <template>
  2. <section class="banner-one" id="banner">
  3. <span class="banner-one__shape-1"></span>
  4. <span class="banner-one__shape-2"></span>
  5. <span class="banner-one__shape-3"></span>
  6. <span class="banner-one__shape-4"></span>
  7. <div class="container">
  8. <div class="banner-one__moc">
  9. <img src="/assets/images/mocs/banner-moc-1-1.png" alt="Awesome Image" />
  10. </div><!-- /.banner-one__moc -->
  11. <div class="row">
  12. <div class="col-xl-6 col-lg-8">
  13. <div class="banner-one__content">
  14. <h3 class="banner-one__title">We Deliver the <br> <span>Software</span> you <br> Need.</h3><!-- /.banner-one__title -->
  15. <p class="banner-one__text">We are committed to providing our customers with <br> exceptional service while offering our employees the <br> best training.</p>
  16. <!-- /.banner-one__text -->
  17. <a href="#" class="banner-one__btn thm-btn "><span>Get Started</span></a><!-- /.thm-btn -->
  18. </div><!-- /.banner-one__content -->
  19. </div><!-- /.col-lg-6 -->
  20. </div><!-- /.row -->
  21. </div><!-- /.container -->
  22. </section>
  23. </template>
  24. <script>
  25. export default {
  26. name: "Banner"
  27. }
  28. </script>
  29. <style scoped>
  30. </style>