Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

contentSection.vue 5.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. <template>
  2. <section id="services">
  3. <div class="container" style="margin-top:-15px">
  4. <div class="row">
  5. <div class="col-lg-12">
  6. <p>
  7. Uni-Vate offers a comprehensive rental property management and letting service for
  8. residential and commercial property portfolios. Our exceptional financial and facility
  9. management processes ensure that we are a cut above the rest and provides a competitive
  10. advantage.
  11. </p>
  12. <p>
  13. We pride ourselves on offering tailored solutions to property owners increasing the
  14. returns to our clients.
  15. </p>
  16. <p>Our rental property management and letting services include the following:</p>
  17. </div>
  18. </div>
  19. <div class="row">
  20. <div class="col-md-6"></div>
  21. <div class="col-md-6">
  22. <h4
  23. style="cursor:pointer"
  24. @click="$vuetify.goTo('#contactFoot', { duration: 2000, easing: 'easeInOutCubic' })"
  25. >
  26. Contact us for a quote
  27. </h4>
  28. </div>
  29. </div>
  30. <div class="row">
  31. <div align="left" class="col-lg-12">
  32. <div class="section-header">
  33. <h2>Our Services</h2>
  34. </div>
  35. <ul class="nav nav-tabs nav-justified" id="myTab" role="tablist">
  36. <li class="nav-item">
  37. <a
  38. class="nav-link-active"
  39. id="tenant-tab"
  40. data-toggle="tab"
  41. href="#tenant"
  42. role="tab"
  43. aria-controls="tenant"
  44. aria-selected="true"
  45. ><h5>Tenant Selection and Vacancy Management</h5>
  46. </a>
  47. </li>
  48. <li class="nav-item">
  49. <a
  50. class="nav-link-active"
  51. id="rent-tab"
  52. data-toggle="tab"
  53. href="#rent"
  54. role="tab"
  55. aria-controls="rent"
  56. aria-selected="false"
  57. ><h5>Rent Collection</h5>
  58. </a>
  59. </li>
  60. <li class="nav-item">
  61. <a
  62. class="nav-link-active"
  63. id="financial-tab"
  64. data-toggle="tab"
  65. href="#financial"
  66. role="tab"
  67. aria-controls="financial"
  68. aria-selected="false"
  69. ><h5>Financial Management</h5>
  70. </a>
  71. </li>
  72. <li class="nav-item">
  73. <a
  74. class="nav-link-active"
  75. id="admin-tab"
  76. data-toggle="tab"
  77. href="#admin"
  78. role="tab"
  79. aria-controls="admin"
  80. aria-selected="false"
  81. ><h5>Administration, Secretarial and Advisor</h5>
  82. </a>
  83. </li>
  84. <li class="nav-item">
  85. <a
  86. class="nav-link-active"
  87. id="maintenance-tab"
  88. data-toggle="tab"
  89. href="#maintenance"
  90. role="tab"
  91. aria-controls="maintenance"
  92. aria-selected="false"
  93. ><h5>Property Mainenance Management</h5>
  94. </a>
  95. </li>
  96. </ul>
  97. <div class="tab-content">
  98. <div class="tab-pane active" id="tenant" role="tabpanel" aria-labelledby="tenant-tab">
  99. <p></p>
  100. <p>• Advertising and Marketing</p>
  101. <p>• Financial and character screening of potential tenants</p>
  102. <p>• Showing</p>
  103. <p>• Determining affordability</p>
  104. <p>• Conclusion of contract and ensuring that any suspensive conditions are met</p>
  105. </div>
  106. <hr />
  107. <div class="tab-pane" id="rent" role="tabpanel" aria-labelledby="rent-tab">
  108. <p>• Monthly invoicing and collection via debit order</p>
  109. <p>• Credit Control including soft collections</p>
  110. <p>• Attorney Collections liaison</p>
  111. <p>• Liaison with metering companies</p>
  112. </div>
  113. <div class="tab-pane" id="financial" role="tabpanel" aria-labelledby="financial-tab">
  114. <p>
  115. • Account reconciliation and payment of net rental after approved operating expenses
  116. </p>
  117. <p>• Payment of approved expenses on behalf of Landlord.</p>
  118. <p>• Preparation and submission of monthly reports.</p>
  119. <p>• Monthly accounting of receipts and expenses.</p>
  120. <p>• Preparation of annual property budget.</p>
  121. <p>• Management of deposits in trust account.</p>
  122. </div>
  123. <div class="tab-pane" id="admin" role="tabpanel" aria-labelledby="admin-tab">
  124. <p>• Preparation and circulation of correspondence and notices to tenants</p>
  125. <p>
  126. • Preparation and conclusion of lease agreements, debit order forms and other legal
  127. documentation
  128. </p>
  129. <p>• Record maintenance</p>
  130. </div>
  131. <div
  132. class="tab-pane"
  133. id="maintenance"
  134. role="tabpanel"
  135. aria-labelledby="maintenance-tab"
  136. >
  137. <p>• Attending to maintenance issues</p>
  138. <p>• Procurement quotations</p>
  139. <p>• Allocating approved repair work to approved sub-contractors</p>
  140. <p>• Processing insurance claims, on request.</p>
  141. </div>
  142. </div>
  143. </div>
  144. </div>
  145. </div>
  146. </section>
  147. </template>
  148. <script>
  149. export default {};
  150. </script>
  151. <style lang="scss" scoped></style>