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.

footerSection.vue 5.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. <template>
  2. <div>
  3. <section
  4. id="contact"
  5. data-aos="fade-up"
  6. data-aos-anchor-placement="top-bottom"
  7. data-aos-delay="150"
  8. >
  9. <div class="container">
  10. <div class="row">
  11. <div class="col-lg-3 section-header">
  12. <h2 align="left">Quick Links</h2>
  13. <p>
  14. <router-link class="footerText" to="/timeshare/buy">Buy Timeshare</router-link><br />
  15. <router-link class="footerText" to="/timeshare/sell">Sell your Timeshare</router-link
  16. ><br />
  17. <!-- <a href="commercial.php">Buy Commercial Property</a><br />
  18. <a href="commercial.php">Rent Commercial Property</a><br />
  19. <a href="residential.php">Buy Residential Property</a><br />
  20. <a href="residential.php">Rent Residential Property</a><br /> -->
  21. <router-link v-if="isLoggedIn" class="footerText" to="/properties"
  22. >Property Management</router-link
  23. ><br v-if="isLoggedIn" />
  24. <router-link to="/property/residential">Residential Property</router-link><br />
  25. <router-link to="/property/commercial">Commercial Property</router-link><br />
  26. <router-link class="footerText" to="/privacyPolicy">Privacy Policy</router-link><br />
  27. <router-link class="footerText" to="/websiteDisclaimer"
  28. >Website Disclaimer</router-link
  29. ><br />
  30. </p>
  31. </div>
  32. <div class="col-lg-9 section-header" id="contactFoot">
  33. <h2 align="left">Contact Us</h2>
  34. <div class="row">
  35. <div class="col-md-4">
  36. <p class="footerText">
  37. 105 Lombardy Business Park<br />
  38. Cnr. Graham and Cole Rd.<br />
  39. Shere, Pretoria, 0084<br /><br />
  40. <a href="mailto:info@univateproperties.co.za">info@univateproperties.co.za</a
  41. ><br />
  42. <a href="tel:0124921238">+27 (0) 12 492 1238</a>
  43. </p>
  44. <br /><br />
  45. <p>
  46. <a href="#body"
  47. ><img src="../../../public/img/logos/UVProp.png" width="200px" alt="" title=""
  48. /></a>
  49. </p>
  50. </div>
  51. <div class="col-md-8">
  52. <contactUsSection />
  53. </div>
  54. </div>
  55. </div>
  56. </div>
  57. </div>
  58. </section>
  59. <!-- #contact -->
  60. <footer id="footer">
  61. <div class="container">
  62. <div class="row">
  63. <div class="copyright col-12">
  64. <strong>Our Partners</strong>
  65. </div>
  66. </div>
  67. <div class="row justify-content-center">
  68. <div class="col-lg-2 p-4">
  69. <a href="https://www.daelive.com/" target="_blank"
  70. ><img src="../../../public/img/logos/daeNew.png"
  71. /></a>
  72. </div>
  73. <div class="col-lg-2 p-4">
  74. <a href="https://www.rci.co.za/Home/Default.aspx?id=10001" target="_blank"
  75. ><img src="../../../public/img/logos/rciNew.png"
  76. /></a>
  77. </div>
  78. <div class="col-lg-2 p-4">
  79. <a href="https://www.gomelo.co.za/" target="_blank"
  80. ><img src="../../../public/img/logos/gomeloNew.png"
  81. /></a>
  82. </div>
  83. <div class="col-lg-2 p-4">
  84. <a href="https://voasa.co.za/" target="_blank"
  85. ><img src="../../../public/img/logos/voasaNew.png"
  86. /></a>
  87. </div>
  88. </div>
  89. <div class="row">
  90. <div class="col-md-12">
  91. <div class="copyright-footer">
  92. <p class="copyright color-text-a">
  93. Copyright © {{ currentYear }} Copyright
  94. <span class="color-a">
  95. <b>Uni-Vate Properties.</b>
  96. </span>
  97. All Rights Reserved.
  98. </p>
  99. </div>
  100. <div class="credits">
  101. Site created by
  102. <a href="http://www.provision-sa.co.za/">
  103. <img width="250px" src="img/logos/provision-logocropped.png" class="pv-Logo" />
  104. </a>
  105. </div>
  106. </div>
  107. </div>
  108. </div>
  109. </footer>
  110. <!-- #footer -->
  111. <a href="#" class="back-to-top">
  112. <i class="fa fa-chevron-up" style="padding-top:8px"></i>
  113. </a>
  114. </div>
  115. </template>
  116. <script>
  117. /* eslint-disable */
  118. import { mapState, mapActions } from "vuex";
  119. import Log from "../../assets/Log";
  120. import contactUsSection from "./contactUsSection";
  121. import AOS from "aos";
  122. import "aos/dist/aos.css";
  123. export default {
  124. components: {
  125. contactUsSection
  126. },
  127. created() {
  128. AOS.init();
  129. },
  130. computed: {
  131. ...mapState("authentication", ["user", "flag", "status", "person", "token"]),
  132. isLoggedIn() {
  133. console.log(Log.isLoggedIn());
  134. return Log.isLoggedIn();
  135. },
  136. NAME() {
  137. return Log.getPerson().name;
  138. },
  139. // eslint-disable-next-line vue/return-in-computed-property
  140. Logout() {
  141. return this.logout();
  142. },
  143. currentYear() {
  144. var d = new Date();
  145. return d.getFullYear();
  146. }
  147. }
  148. };
  149. </script>
  150. <style lang="scss" scoped>
  151. .contactHeader {
  152. font-family: "Muli";
  153. font-weight: 500;
  154. font-size: 24px;
  155. }
  156. .footerText {
  157. font-size: 16px;
  158. font-family: "Muli";
  159. }
  160. </style>