You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

aboutUsContentSection.vue 2.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <template>
  2. <section id="services">
  3. <div class="container">
  4. <div class="row">
  5. <div class="col-lg-6" data-aos="fade-right">
  6. <p>
  7. To date the team have processed many sales in the residential, share block and
  8. commercial arenas within South Africa and are currently involved in the rental and
  9. management of 40 commercial and 15 residential properties.
  10. </p>
  11. <p>
  12. <strong
  13. >The Uni-Vate support team consists of three highly qualified and experienced staff,
  14. who have thirteen years' joint experience in the timeshare and property
  15. industry.</strong
  16. >
  17. </p>
  18. <p>
  19. Owners seeking to sell their property understand the power of internet marketing and the
  20. sophistication of target marketing to consumers who have shown an interest in buying
  21. property. Buyers can save by purchasing from Owners advertising their property for sale
  22. through Uni-Vate, using their website.
  23. </p>
  24. <p>
  25. <strong
  26. >Sellers across SA are able to list properties for a listing fee of R{{
  27. getListingFee.amount
  28. }}
  29. per property listing which gives them exposure not only on the website, but on social
  30. media sites also.</strong
  31. >
  32. </p>
  33. <p>
  34. Uni-Vate Properties is affiliated to the Estate Agents Board (EAAB) and also to the
  35. Institute of Estate Agents South Africa (IEASA) and operates in compliance with the
  36. Estate Agents Code of Conduct. This assures our clients of professional, ethical and
  37. fair service at all times.
  38. </p>
  39. <br />
  40. </div>
  41. <div class="col-lg-6" data-aos="fade-left">
  42. <h3>
  43. Meeting the property needs of consumers is at the heart of what we do; whether it is
  44. helping an Owner transition out of their property Ownership, or helping the buyer find
  45. the property they have been looking for.
  46. </h3>
  47. <p>
  48. So whether you would like to sell or rent out your: timeshare, home, industrial,
  49. commercial, or vacant property or whether you would like to buy or rent a: timeshare,
  50. home, industrial, commercial, or vacant property; Uni-Vate is able to assist you.
  51. </p>
  52. <img src="../../../public/img/logos.jpg" width="100%" /><br />
  53. </div>
  54. </div>
  55. </div>
  56. </section>
  57. </template>
  58. <script>
  59. import AOS from "aos";
  60. import "aos/dist/aos.css";
  61. import { mapGetters } from "vuex";
  62. export default {
  63. created() {
  64. AOS.init();
  65. },
  66. computed: {
  67. ...mapGetters("fees", ["getListingFee"])
  68. }
  69. };
  70. </script>
  71. <style lang="scss" scoped></style>