@burh/nuxt-core 1.0.120 → 1.0.121
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,68 +1,68 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="feature__card">
|
|
3
|
-
<div class="feature__card__image" :style="`--icon-bg-color: #${iconBgColor}`">
|
|
4
|
-
<img :src="icon" :alt="title">
|
|
5
|
-
</div>
|
|
6
|
-
<div class="feature__card__title">
|
|
7
|
-
<p>{{ title }}</p>
|
|
8
|
-
</div>
|
|
9
|
-
<div class="feature__card__description">
|
|
10
|
-
<span>{{ description }}</span>
|
|
11
|
-
</div>
|
|
12
|
-
</div>
|
|
13
|
-
</template>
|
|
14
|
-
|
|
15
|
-
<script>
|
|
16
|
-
export default {
|
|
17
|
-
name: 'FeatureBusinessCard',
|
|
18
|
-
props: {
|
|
19
|
-
icon: String,
|
|
20
|
-
iconBgColor: {
|
|
21
|
-
type: String,
|
|
22
|
-
default: '5983FE'
|
|
23
|
-
},
|
|
24
|
-
title: String,
|
|
25
|
-
description: String,
|
|
26
|
-
}
|
|
27
|
-
};
|
|
28
|
-
</script>
|
|
29
|
-
|
|
30
|
-
<style lang="scss" scoped>
|
|
31
|
-
.feature__card {
|
|
32
|
-
background: #fff;
|
|
33
|
-
padding: 20px;
|
|
34
|
-
display: flex;
|
|
35
|
-
flex-direction: column;
|
|
36
|
-
align-items: flex-start;
|
|
37
|
-
box-shadow: 5px 5px 50px 2px #E9EEF2;
|
|
38
|
-
border-radius: 10px;
|
|
39
|
-
width: 300px;
|
|
40
|
-
margin: 0 auto;
|
|
41
|
-
&__image {
|
|
42
|
-
display: flex;
|
|
43
|
-
align-items: center;
|
|
44
|
-
justify-content: center;
|
|
45
|
-
width: 45px;
|
|
46
|
-
height: 45px;
|
|
47
|
-
border-radius: 10px;
|
|
48
|
-
background: var(--icon-bg-color);
|
|
49
|
-
img {
|
|
50
|
-
display: block;
|
|
51
|
-
width: 25px;
|
|
52
|
-
}
|
|
53
|
-
}
|
|
54
|
-
&__title {
|
|
55
|
-
padding: 10px 0;
|
|
56
|
-
p {
|
|
57
|
-
font-size: 1.5625rem;
|
|
58
|
-
font-weight: 600;
|
|
59
|
-
margin-bottom: 0;
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
&__description {
|
|
63
|
-
text-align: left;
|
|
64
|
-
font-weight: 400;
|
|
65
|
-
font-size: 0.875rem;
|
|
66
|
-
}
|
|
67
|
-
}
|
|
68
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div class="feature__card">
|
|
3
|
+
<div class="feature__card__image" :style="`--icon-bg-color: #${iconBgColor}`">
|
|
4
|
+
<img :src="icon" :alt="title">
|
|
5
|
+
</div>
|
|
6
|
+
<div class="feature__card__title">
|
|
7
|
+
<p>{{ title }}</p>
|
|
8
|
+
</div>
|
|
9
|
+
<div class="feature__card__description">
|
|
10
|
+
<span>{{ description }}</span>
|
|
11
|
+
</div>
|
|
12
|
+
</div>
|
|
13
|
+
</template>
|
|
14
|
+
|
|
15
|
+
<script>
|
|
16
|
+
export default {
|
|
17
|
+
name: 'FeatureBusinessCard',
|
|
18
|
+
props: {
|
|
19
|
+
icon: String,
|
|
20
|
+
iconBgColor: {
|
|
21
|
+
type: String,
|
|
22
|
+
default: '5983FE'
|
|
23
|
+
},
|
|
24
|
+
title: String,
|
|
25
|
+
description: String,
|
|
26
|
+
}
|
|
27
|
+
};
|
|
28
|
+
</script>
|
|
29
|
+
|
|
30
|
+
<style lang="scss" scoped>
|
|
31
|
+
.feature__card {
|
|
32
|
+
background: #fff;
|
|
33
|
+
padding: 20px;
|
|
34
|
+
display: flex;
|
|
35
|
+
flex-direction: column;
|
|
36
|
+
align-items: flex-start;
|
|
37
|
+
box-shadow: 5px 5px 50px 2px #E9EEF2;
|
|
38
|
+
border-radius: 10px;
|
|
39
|
+
width: 300px;
|
|
40
|
+
margin: 0 auto;
|
|
41
|
+
&__image {
|
|
42
|
+
display: flex;
|
|
43
|
+
align-items: center;
|
|
44
|
+
justify-content: center;
|
|
45
|
+
width: 45px;
|
|
46
|
+
height: 45px;
|
|
47
|
+
border-radius: 10px;
|
|
48
|
+
background: var(--icon-bg-color);
|
|
49
|
+
img {
|
|
50
|
+
display: block;
|
|
51
|
+
width: 25px;
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
&__title {
|
|
55
|
+
padding: 10px 0;
|
|
56
|
+
p {
|
|
57
|
+
font-size: 1.5625rem;
|
|
58
|
+
font-weight: 600;
|
|
59
|
+
margin-bottom: 0;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
&__description {
|
|
63
|
+
text-align: left;
|
|
64
|
+
font-weight: 400;
|
|
65
|
+
font-size: 0.875rem;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
</style>
|
|
@@ -1,110 +1,110 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<vue-slick-carousel v-bind="settings" :arrows="true" :dots="true">
|
|
3
|
-
<div
|
|
4
|
-
v-for="(item, index) in carouselItems"
|
|
5
|
-
:key="index"
|
|
6
|
-
class="carousel__image"
|
|
7
|
-
>
|
|
8
|
-
<img :src="item.img" :alt="item.title" draggable="false">
|
|
9
|
-
</div>
|
|
10
|
-
</vue-slick-carousel>
|
|
11
|
-
</template>
|
|
12
|
-
|
|
13
|
-
<script>
|
|
14
|
-
import VueSlickCarousel from 'vue-slick-carousel';
|
|
15
|
-
import 'vue-slick-carousel/dist/vue-slick-carousel.css';
|
|
16
|
-
import 'vue-slick-carousel/dist/vue-slick-carousel-theme.css';
|
|
17
|
-
|
|
18
|
-
export default {
|
|
19
|
-
name: 'ImageCarousel',
|
|
20
|
-
components: {
|
|
21
|
-
VueSlickCarousel
|
|
22
|
-
},
|
|
23
|
-
props: {
|
|
24
|
-
carouselItems: {
|
|
25
|
-
type: Array,
|
|
26
|
-
default: () => {
|
|
27
|
-
return [];
|
|
28
|
-
}
|
|
29
|
-
},
|
|
30
|
-
dots: {
|
|
31
|
-
type: Boolean,
|
|
32
|
-
default: true
|
|
33
|
-
},
|
|
34
|
-
infinite: {
|
|
35
|
-
type: Boolean,
|
|
36
|
-
default: true
|
|
37
|
-
},
|
|
38
|
-
autoplay: {
|
|
39
|
-
type: Boolean,
|
|
40
|
-
default: true
|
|
41
|
-
},
|
|
42
|
-
slidesToShow: {
|
|
43
|
-
type: Number,
|
|
44
|
-
default: 3
|
|
45
|
-
},
|
|
46
|
-
slidesToScroll: {
|
|
47
|
-
type: Number,
|
|
48
|
-
default: 3
|
|
49
|
-
},
|
|
50
|
-
speed: {
|
|
51
|
-
type: Number,
|
|
52
|
-
default: 500
|
|
53
|
-
},
|
|
54
|
-
breakpoints: {
|
|
55
|
-
type: Array,
|
|
56
|
-
default: () => {
|
|
57
|
-
return [
|
|
58
|
-
{
|
|
59
|
-
breakpoint: 800,
|
|
60
|
-
settings: {
|
|
61
|
-
slidesToShow: 2,
|
|
62
|
-
slidesToScroll: 2
|
|
63
|
-
}
|
|
64
|
-
},
|
|
65
|
-
{
|
|
66
|
-
breakpoint: 600,
|
|
67
|
-
settings: {
|
|
68
|
-
slidesToShow: 1,
|
|
69
|
-
slidesToScroll: 1
|
|
70
|
-
}
|
|
71
|
-
}
|
|
72
|
-
];
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
|
-
},
|
|
76
|
-
data() {
|
|
77
|
-
return {
|
|
78
|
-
settings: {}
|
|
79
|
-
};
|
|
80
|
-
},
|
|
81
|
-
mounted() {
|
|
82
|
-
const settings = {
|
|
83
|
-
dots: this.dots,
|
|
84
|
-
infinite: this.infinite,
|
|
85
|
-
autoplay: this.autoplay,
|
|
86
|
-
slidesToShow: this.slidesToShow,
|
|
87
|
-
slidesToScroll: this.slidesToScroll,
|
|
88
|
-
speed: this.speed,
|
|
89
|
-
responsive: this.breakpoints
|
|
90
|
-
};
|
|
91
|
-
|
|
92
|
-
this.settings = settings;
|
|
93
|
-
}
|
|
94
|
-
};
|
|
95
|
-
</script>
|
|
96
|
-
|
|
97
|
-
<style lang="scss">
|
|
98
|
-
.carousel__image {
|
|
99
|
-
padding: 20px 0;
|
|
100
|
-
display: flex!important;
|
|
101
|
-
align-items: center;
|
|
102
|
-
justify-content: center;
|
|
103
|
-
user-select: none;
|
|
104
|
-
img {
|
|
105
|
-
display: block;
|
|
106
|
-
width: 150px;
|
|
107
|
-
padding: 10px;
|
|
108
|
-
}
|
|
109
|
-
}
|
|
110
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<vue-slick-carousel v-bind="settings" :arrows="true" :dots="true">
|
|
3
|
+
<div
|
|
4
|
+
v-for="(item, index) in carouselItems"
|
|
5
|
+
:key="index"
|
|
6
|
+
class="carousel__image"
|
|
7
|
+
>
|
|
8
|
+
<img :src="item.img" :alt="item.title" draggable="false">
|
|
9
|
+
</div>
|
|
10
|
+
</vue-slick-carousel>
|
|
11
|
+
</template>
|
|
12
|
+
|
|
13
|
+
<script>
|
|
14
|
+
import VueSlickCarousel from 'vue-slick-carousel';
|
|
15
|
+
import 'vue-slick-carousel/dist/vue-slick-carousel.css';
|
|
16
|
+
import 'vue-slick-carousel/dist/vue-slick-carousel-theme.css';
|
|
17
|
+
|
|
18
|
+
export default {
|
|
19
|
+
name: 'ImageCarousel',
|
|
20
|
+
components: {
|
|
21
|
+
VueSlickCarousel
|
|
22
|
+
},
|
|
23
|
+
props: {
|
|
24
|
+
carouselItems: {
|
|
25
|
+
type: Array,
|
|
26
|
+
default: () => {
|
|
27
|
+
return [];
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
dots: {
|
|
31
|
+
type: Boolean,
|
|
32
|
+
default: true
|
|
33
|
+
},
|
|
34
|
+
infinite: {
|
|
35
|
+
type: Boolean,
|
|
36
|
+
default: true
|
|
37
|
+
},
|
|
38
|
+
autoplay: {
|
|
39
|
+
type: Boolean,
|
|
40
|
+
default: true
|
|
41
|
+
},
|
|
42
|
+
slidesToShow: {
|
|
43
|
+
type: Number,
|
|
44
|
+
default: 3
|
|
45
|
+
},
|
|
46
|
+
slidesToScroll: {
|
|
47
|
+
type: Number,
|
|
48
|
+
default: 3
|
|
49
|
+
},
|
|
50
|
+
speed: {
|
|
51
|
+
type: Number,
|
|
52
|
+
default: 500
|
|
53
|
+
},
|
|
54
|
+
breakpoints: {
|
|
55
|
+
type: Array,
|
|
56
|
+
default: () => {
|
|
57
|
+
return [
|
|
58
|
+
{
|
|
59
|
+
breakpoint: 800,
|
|
60
|
+
settings: {
|
|
61
|
+
slidesToShow: 2,
|
|
62
|
+
slidesToScroll: 2
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
breakpoint: 600,
|
|
67
|
+
settings: {
|
|
68
|
+
slidesToShow: 1,
|
|
69
|
+
slidesToScroll: 1
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
];
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
data() {
|
|
77
|
+
return {
|
|
78
|
+
settings: {}
|
|
79
|
+
};
|
|
80
|
+
},
|
|
81
|
+
mounted() {
|
|
82
|
+
const settings = {
|
|
83
|
+
dots: this.dots,
|
|
84
|
+
infinite: this.infinite,
|
|
85
|
+
autoplay: this.autoplay,
|
|
86
|
+
slidesToShow: this.slidesToShow,
|
|
87
|
+
slidesToScroll: this.slidesToScroll,
|
|
88
|
+
speed: this.speed,
|
|
89
|
+
responsive: this.breakpoints
|
|
90
|
+
};
|
|
91
|
+
|
|
92
|
+
this.settings = settings;
|
|
93
|
+
}
|
|
94
|
+
};
|
|
95
|
+
</script>
|
|
96
|
+
|
|
97
|
+
<style lang="scss">
|
|
98
|
+
.carousel__image {
|
|
99
|
+
padding: 20px 0;
|
|
100
|
+
display: flex!important;
|
|
101
|
+
align-items: center;
|
|
102
|
+
justify-content: center;
|
|
103
|
+
user-select: none;
|
|
104
|
+
img {
|
|
105
|
+
display: block;
|
|
106
|
+
width: 150px;
|
|
107
|
+
padding: 10px;
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
</style>
|
|
@@ -1,65 +1,65 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<collapse class="collapse__container">
|
|
3
|
-
<collapse-item
|
|
4
|
-
v-for="(item, index) in collapseItems"
|
|
5
|
-
:key="index"
|
|
6
|
-
class="collapse__container__item"
|
|
7
|
-
>
|
|
8
|
-
<h6 slot="title">{{ item.title }}</h6>
|
|
9
|
-
<div class="collapse__container__item__description">{{ item.description }}</div>
|
|
10
|
-
</collapse-item>
|
|
11
|
-
</collapse>
|
|
12
|
-
</template>
|
|
13
|
-
|
|
14
|
-
<script>
|
|
15
|
-
import Collapse from '@burh/nuxt-core/components/argon-core/Collapse/Collapse.vue';
|
|
16
|
-
import CollapseItem from '@burh/nuxt-core/components/argon-core/Collapse/CollapseItem.vue';
|
|
17
|
-
|
|
18
|
-
export default {
|
|
19
|
-
name: 'DefaultCollapse',
|
|
20
|
-
components: {
|
|
21
|
-
Collapse,
|
|
22
|
-
CollapseItem
|
|
23
|
-
},
|
|
24
|
-
props: {
|
|
25
|
-
collapseItems: {}
|
|
26
|
-
}
|
|
27
|
-
};
|
|
28
|
-
</script>
|
|
29
|
-
|
|
30
|
-
<style lang="scss">
|
|
31
|
-
.collapse__container {
|
|
32
|
-
&__item {
|
|
33
|
-
background: transparent;
|
|
34
|
-
box-shadow: 0 0 0;
|
|
35
|
-
padding: 20px 0;
|
|
36
|
-
h6 {
|
|
37
|
-
font-size: 1.5rem;
|
|
38
|
-
font-weight: 400;
|
|
39
|
-
max-width: 85%;
|
|
40
|
-
margin-bottom: 0;
|
|
41
|
-
padding: 10px 0;
|
|
42
|
-
@media (max-width: 800px) {
|
|
43
|
-
& {
|
|
44
|
-
font-size: 1rem;
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
.card-header {
|
|
49
|
-
padding: 1.25rem 0;
|
|
50
|
-
&::after {
|
|
51
|
-
color: #5983FE;
|
|
52
|
-
font-size: 1.5rem;
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
&__description {
|
|
56
|
-
font-size: 1.2rem;
|
|
57
|
-
@media (max-width: 800px) {
|
|
58
|
-
& {
|
|
59
|
-
font-size: 1rem;
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
}
|
|
65
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<collapse class="collapse__container">
|
|
3
|
+
<collapse-item
|
|
4
|
+
v-for="(item, index) in collapseItems"
|
|
5
|
+
:key="index"
|
|
6
|
+
class="collapse__container__item"
|
|
7
|
+
>
|
|
8
|
+
<h6 slot="title">{{ item.title }}</h6>
|
|
9
|
+
<div class="collapse__container__item__description">{{ item.description }}</div>
|
|
10
|
+
</collapse-item>
|
|
11
|
+
</collapse>
|
|
12
|
+
</template>
|
|
13
|
+
|
|
14
|
+
<script>
|
|
15
|
+
import Collapse from '@burh/nuxt-core/components/argon-core/Collapse/Collapse.vue';
|
|
16
|
+
import CollapseItem from '@burh/nuxt-core/components/argon-core/Collapse/CollapseItem.vue';
|
|
17
|
+
|
|
18
|
+
export default {
|
|
19
|
+
name: 'DefaultCollapse',
|
|
20
|
+
components: {
|
|
21
|
+
Collapse,
|
|
22
|
+
CollapseItem
|
|
23
|
+
},
|
|
24
|
+
props: {
|
|
25
|
+
collapseItems: {}
|
|
26
|
+
}
|
|
27
|
+
};
|
|
28
|
+
</script>
|
|
29
|
+
|
|
30
|
+
<style lang="scss">
|
|
31
|
+
.collapse__container {
|
|
32
|
+
&__item {
|
|
33
|
+
background: transparent;
|
|
34
|
+
box-shadow: 0 0 0;
|
|
35
|
+
padding: 20px 0;
|
|
36
|
+
h6 {
|
|
37
|
+
font-size: 1.5rem;
|
|
38
|
+
font-weight: 400;
|
|
39
|
+
max-width: 85%;
|
|
40
|
+
margin-bottom: 0;
|
|
41
|
+
padding: 10px 0;
|
|
42
|
+
@media (max-width: 800px) {
|
|
43
|
+
& {
|
|
44
|
+
font-size: 1rem;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
.card-header {
|
|
49
|
+
padding: 1.25rem 0;
|
|
50
|
+
&::after {
|
|
51
|
+
color: #5983FE;
|
|
52
|
+
font-size: 1.5rem;
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
&__description {
|
|
56
|
+
font-size: 1.2rem;
|
|
57
|
+
@media (max-width: 800px) {
|
|
58
|
+
& {
|
|
59
|
+
font-size: 1rem;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
</style>
|
|
@@ -1,45 +1,45 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<footer class="footer container-fluid container-fluid--bu">
|
|
3
|
-
<div class="row align-items-center justify-content-lg-between">
|
|
4
|
-
<div class="col-lg-8">
|
|
5
|
-
<ul class="nav nav-footer">
|
|
6
|
-
<li class="nav-item">
|
|
7
|
-
<a :href="`${url}/termos-de-uso`" class="nav-link" rel="noopener">Termos de Uso</a>
|
|
8
|
-
</li>
|
|
9
|
-
<li class="nav-item">
|
|
10
|
-
<a href="//bit.ly/FeedbackBURH" class="nav-link" target="_blank" rel="noopener">Avalie sua Experiência</a>
|
|
11
|
-
</li>
|
|
12
|
-
<li class="nav-item">
|
|
13
|
-
<a href="//www.messenger.com/t/burhbrasil" class="nav-link" target="_blank" rel="noopener">Ajuda</a>
|
|
14
|
-
</li>
|
|
15
|
-
<li class="nav-item">
|
|
16
|
-
<a href="mailto:suporte@burh.com.br" class="nav-link" rel="noopener">Suporte Técnico</a>
|
|
17
|
-
</li>
|
|
18
|
-
<li class="nav-item"><a target="_blank" href="https://www.facebook.com/burhbrasil" class="nav-link" rel="noopener">Facebook</a></li>
|
|
19
|
-
<li class="nav-item"><a target="_blank" href="https://www.instagram.com/burhbrasil/" class="nav-link" rel="noopener">Instagram</a></li>
|
|
20
|
-
<li class="nav-item"><a target="_blank" href="https://br.jooble.org/" class="nav-link" rel="noopener">Jooble</a></li>
|
|
21
|
-
</ul>
|
|
22
|
-
</div>
|
|
23
|
-
<div class="col-lg-4">
|
|
24
|
-
<div class="copyright text-center text-lg-right">
|
|
25
|
-
Feito com <span id="heart"></span>
|
|
26
|
-
© {{year}} no Brasil para o mundo.
|
|
27
|
-
</div>
|
|
28
|
-
</div>
|
|
29
|
-
</div>
|
|
30
|
-
</footer>
|
|
31
|
-
</template>
|
|
32
|
-
<script>
|
|
33
|
-
export default {
|
|
34
|
-
data() {
|
|
35
|
-
return {
|
|
36
|
-
year: new Date().getFullYear(),
|
|
37
|
-
url: ''
|
|
38
|
-
};
|
|
39
|
-
},
|
|
40
|
-
mounted() {
|
|
41
|
-
this.url = process.env.baseUserUrl;
|
|
42
|
-
}
|
|
43
|
-
};
|
|
44
|
-
</script>
|
|
45
|
-
<style></style>
|
|
1
|
+
<template>
|
|
2
|
+
<footer class="footer container-fluid container-fluid--bu">
|
|
3
|
+
<div class="row align-items-center justify-content-lg-between">
|
|
4
|
+
<div class="col-lg-8">
|
|
5
|
+
<ul class="nav nav-footer">
|
|
6
|
+
<li class="nav-item">
|
|
7
|
+
<a :href="`${url}/termos-de-uso`" class="nav-link" rel="noopener">Termos de Uso</a>
|
|
8
|
+
</li>
|
|
9
|
+
<li class="nav-item">
|
|
10
|
+
<a href="//bit.ly/FeedbackBURH" class="nav-link" target="_blank" rel="noopener">Avalie sua Experiência</a>
|
|
11
|
+
</li>
|
|
12
|
+
<li class="nav-item">
|
|
13
|
+
<a href="//www.messenger.com/t/burhbrasil" class="nav-link" target="_blank" rel="noopener">Ajuda</a>
|
|
14
|
+
</li>
|
|
15
|
+
<li class="nav-item">
|
|
16
|
+
<a href="mailto:suporte@burh.com.br" class="nav-link" rel="noopener">Suporte Técnico</a>
|
|
17
|
+
</li>
|
|
18
|
+
<li class="nav-item"><a target="_blank" href="https://www.facebook.com/burhbrasil" class="nav-link" rel="noopener">Facebook</a></li>
|
|
19
|
+
<li class="nav-item"><a target="_blank" href="https://www.instagram.com/burhbrasil/" class="nav-link" rel="noopener">Instagram</a></li>
|
|
20
|
+
<li class="nav-item"><a target="_blank" href="https://br.jooble.org/" class="nav-link" rel="noopener">Jooble</a></li>
|
|
21
|
+
</ul>
|
|
22
|
+
</div>
|
|
23
|
+
<div class="col-lg-4">
|
|
24
|
+
<div class="copyright text-center text-lg-right">
|
|
25
|
+
Feito com <span id="heart"></span>
|
|
26
|
+
© {{year}} no Brasil para o mundo.
|
|
27
|
+
</div>
|
|
28
|
+
</div>
|
|
29
|
+
</div>
|
|
30
|
+
</footer>
|
|
31
|
+
</template>
|
|
32
|
+
<script>
|
|
33
|
+
export default {
|
|
34
|
+
data() {
|
|
35
|
+
return {
|
|
36
|
+
year: new Date().getFullYear(),
|
|
37
|
+
url: ''
|
|
38
|
+
};
|
|
39
|
+
},
|
|
40
|
+
mounted() {
|
|
41
|
+
this.url = process.env.baseUserUrl;
|
|
42
|
+
}
|
|
43
|
+
};
|
|
44
|
+
</script>
|
|
45
|
+
<style></style>
|