123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <template>
- <section id="services">
- <div class="container">
- <div class="row">
- <div class="col-lg-6" data-aos="fade-right">
- <p>
- To date the team have processed many sales in the residential, share block and
- commercial arenas within South Africa and are currently involved in the rental and
- management of 40 commercial and 15 residential properties.
- </p>
- <p>
- <strong
- >The Uni-Vate support team consists of three highly qualified and experienced staff,
- who have thirteen years' joint experience in the timeshare and property
- industry.</strong
- >
- </p>
- <p>
- Owners seeking to sell their property understand the power of internet marketing and the
- sophistication of target marketing to consumers who have shown an interest in buying
- property. Buyers can save by purchasing from Owners advertising their property for sale
- through Uni-Vate, using their website.
- </p>
- <p>
- <strong
- >Sellers across SA are able to list properties for a listing fee of R{{
- getListingFee.amount
- }}
- per property listing which gives them exposure not only on the website, but on social
- media sites also.</strong
- >
- </p>
- <p>
- Uni-Vate Properties is affiliated to the Estate Agents Board (EAAB) and also to the
- Institute of Estate Agents South Africa (IEASA) and operates in compliance with the
- Estate Agents Code of Conduct. This assures our clients of professional, ethical and
- fair service at all times.
- </p>
- <br />
- </div>
-
- <div class="col-lg-6" data-aos="fade-left">
- <h3>
- Meeting the property needs of consumers is at the heart of what we do; whether it is
- helping an Owner transition out of their property Ownership, or helping the buyer find
- the property they have been looking for.
- </h3>
- <p>
- So whether you would like to sell or rent out your: timeshare, home, industrial,
- commercial, or vacant property or whether you would like to buy or rent a: timeshare,
- home, industrial, commercial, or vacant property; Uni-Vate is able to assist you.
- </p>
- <img src="../../../public/img/logos.jpg" width="100%" /><br />
- </div>
- </div>
- </div>
- </section>
- </template>
-
- <script>
- import AOS from "aos";
- import "aos/dist/aos.css";
- import { mapGetters } from "vuex";
-
- export default {
- created() {
- AOS.init();
- },
- computed: {
- ...mapGetters("fees", ["getListingFee"])
- }
- };
- </script>
-
- <style lang="scss" scoped></style>
|