|
@@ -1,26 +1,37 @@
|
1
|
1
|
<template>
|
2
|
2
|
<section id="intro">
|
3
|
3
|
<div class="container">
|
4
|
|
- <div class="row">
|
5
|
|
- <div align="left" class="col-sm-12 col-md-10">
|
6
|
|
- <div class="intro-content box">
|
7
|
|
- <div style="margin-top:-40px">
|
8
|
|
- <h2>Let us manage your property</h2>
|
9
|
|
- <p>
|
10
|
|
- At Uni-Vate we appreciate the significant and positive relationship between
|
11
|
|
- effective Property Management and property prices. We understand that effective
|
12
|
|
- management not only relies on administrative processes being intact, but also on a
|
13
|
|
- clear plan and good communication with our clients based on respect, trust
|
14
|
|
- understanding, openness and accountability. We have access to a comprehensive set of
|
15
|
|
- human and other resources to ensure that your property is proactively managed to
|
16
|
|
- protect your investment and to ensure the contentedness of occupants. We offer
|
17
|
|
- comprehensive property management services, whether it being Sectional Title
|
18
|
|
- Management, HOA Management or Rental Property Portfolio Management.
|
19
|
|
- </p>
|
20
|
|
- <a href="#" class="btn-solid-blue">LIST YOUR PROPERTY WITH UNI-VATE PROPERTIES</a>
|
21
|
|
- <router-link v-if="!isLoggedIn" to="/user/login" class="btn-white-border"
|
22
|
|
- >LOGIN TO OWNERS PORTAL</router-link
|
23
|
|
- >
|
|
4
|
+ <div class="form">
|
|
5
|
+ <div class="row">
|
|
6
|
+ <div align="left" class="col-sm-12 col-md-10">
|
|
7
|
+ <div class="intro-content box">
|
|
8
|
+ <div style="margin-top: -40px;">
|
|
9
|
+ <h2>Let us manage your property</h2>
|
|
10
|
+ <p>
|
|
11
|
+ At Uni-Vate we appreciate the significant and positive
|
|
12
|
+ relationship between effective Property Management and
|
|
13
|
+ property prices. We understand that effective management not
|
|
14
|
+ only relies on administrative processes being intact, but also
|
|
15
|
+ on a clear plan and good communication with our clients based
|
|
16
|
+ on respect, trust understanding, openness and accountability.
|
|
17
|
+ We have access to a comprehensive set of human and other
|
|
18
|
+ resources to ensure that your property is proactively managed
|
|
19
|
+ to protect your investment and to ensure the contentedness of
|
|
20
|
+ occupants. We offer comprehensive property management
|
|
21
|
+ services, whether it being Sectional Title Management, HOA
|
|
22
|
+ Management or Rental Property Portfolio Management.
|
|
23
|
+ </p>
|
|
24
|
+ <a href="#" class="btn-white-border">
|
|
25
|
+ List your property with Uni-vate Properties
|
|
26
|
+ </a>
|
|
27
|
+ <router-link
|
|
28
|
+ v-if="!isLoggedIn"
|
|
29
|
+ to="/user/login"
|
|
30
|
+ class="btn-white-border"
|
|
31
|
+ >
|
|
32
|
+ Login to owner portal
|
|
33
|
+ </router-link>
|
|
34
|
+ </div>
|
24
|
35
|
</div>
|
25
|
36
|
</div>
|
26
|
37
|
</div>
|
|
@@ -35,8 +46,11 @@
|
35
|
46
|
:loop="true"
|
36
|
47
|
:autoHeight="true"
|
37
|
48
|
id="intro-carousel"
|
38
|
|
- style="margin-top:-50px;"
|
39
|
|
- :responsive="{ 0: { items: 1, nav: false }, 600: { items: 1, nav: false } }"
|
|
49
|
+ style="margin-top: -50px;"
|
|
50
|
+ :responsive="{
|
|
51
|
+ 0: { items: 1, nav: false },
|
|
52
|
+ 600: { items: 1, nav: false },
|
|
53
|
+ }"
|
40
|
54
|
>
|
41
|
55
|
<img class="item" src="/img/intro-carousel/home-1.jpg" alt="" />
|
42
|
56
|
<img class="item" src="/img/intro-carousel/16.jpg" alt="" />
|
|
@@ -52,21 +66,27 @@
|
52
|
66
|
|
53
|
67
|
<script>
|
54
|
68
|
/* eslint-disable */
|
55
|
|
-import { mapState, mapActions } from "vuex";
|
56
|
|
-import Log from "../../../assets/Log";
|
57
|
|
-import carousel from "vue-owl-carousel";
|
|
69
|
+import { mapState, mapActions } from 'vuex'
|
|
70
|
+import Log from '../../../assets/Log'
|
|
71
|
+import carousel from 'vue-owl-carousel'
|
58
|
72
|
export default {
|
59
|
73
|
components: {
|
60
|
|
- carousel
|
|
74
|
+ carousel,
|
61
|
75
|
},
|
62
|
76
|
computed: {
|
63
|
|
- ...mapState("authentication", ["user", "flag", "status", "person", "token"]),
|
|
77
|
+ ...mapState('authentication', [
|
|
78
|
+ 'user',
|
|
79
|
+ 'flag',
|
|
80
|
+ 'status',
|
|
81
|
+ 'person',
|
|
82
|
+ 'token',
|
|
83
|
+ ]),
|
64
|
84
|
isLoggedIn() {
|
65
|
|
- console.log(Log.isLoggedIn());
|
66
|
|
- return Log.isLoggedIn();
|
67
|
|
- }
|
68
|
|
- }
|
69
|
|
-};
|
|
85
|
+ console.log(Log.isLoggedIn())
|
|
86
|
+ return Log.isLoggedIn()
|
|
87
|
+ },
|
|
88
|
+ },
|
|
89
|
+}
|
70
|
90
|
</script>
|
71
|
91
|
|
72
|
92
|
<style lang="scss" scoped></style>
|