BannerTwo.vue 1.2 KB

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