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.5KB

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