12345678910111213141516171819202122232425262728293031323334 |
- <template>
- <section class="banner-one" id="banner">
- <span class="banner-one__shape-1"></span>
- <span class="banner-one__shape-2"></span>
- <span class="banner-one__shape-3"></span>
- <span class="banner-one__shape-4"></span>
- <div class="container">
- <div class="banner-one__moc">
- <img src="/assets/images/mocs/banner-moc-1-1.png" alt="Awesome Image" />
- </div><!-- /.banner-one__moc -->
- <div class="row">
- <div class="col-xl-6 col-lg-8">
- <div class="banner-one__content">
- <h3 class="banner-one__title">We Deliver the <br> <span>Software</span> you <br> Need.</h3><!-- /.banner-one__title -->
- <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>
- <!-- /.banner-one__text -->
- <a href="#" class="banner-one__btn thm-btn "><span>Get Started</span></a><!-- /.thm-btn -->
- </div><!-- /.banner-one__content -->
- </div><!-- /.col-lg-6 -->
- </div><!-- /.row -->
- </div><!-- /.container -->
- </section>
- </template>
- <script>
- export default {
- name: "Banner"
- }
- </script>
- <style scoped>
- </style>
|