@burh/nuxt-core 1.0.269 → 1.0.271
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.
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div
|
|
3
|
+
class="loading__bar"
|
|
4
|
+
v-if="isShowing"
|
|
5
|
+
>
|
|
6
|
+
<div
|
|
7
|
+
class="loading__bar__content"
|
|
8
|
+
:style="`--loading-bar-color: ${defaultColor}; --loading-bar-w: ${loadingWidth}%`"
|
|
9
|
+
></div>
|
|
10
|
+
</div>
|
|
11
|
+
</template>
|
|
12
|
+
|
|
13
|
+
<script>
|
|
14
|
+
export default {
|
|
15
|
+
name: 'loading-bar',
|
|
16
|
+
props: {
|
|
17
|
+
defaultColor: {
|
|
18
|
+
type: String,
|
|
19
|
+
default: '#1da1f1'
|
|
20
|
+
},
|
|
21
|
+
isLoading: {
|
|
22
|
+
type: Boolean,
|
|
23
|
+
default: false
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
watch: {
|
|
27
|
+
isLoading() {
|
|
28
|
+
this.setLoading();
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
data() {
|
|
32
|
+
return {
|
|
33
|
+
loadingWidth: 0,
|
|
34
|
+
loadingInterval: null,
|
|
35
|
+
isShowing: false
|
|
36
|
+
};
|
|
37
|
+
},
|
|
38
|
+
methods: {
|
|
39
|
+
setLoading() {
|
|
40
|
+
if (this.isLoading) {
|
|
41
|
+
this.isShowing = true;
|
|
42
|
+
this.setLoadingInterval();
|
|
43
|
+
} else {
|
|
44
|
+
this.loadingInterval = null;
|
|
45
|
+
this.loadingWidth = 100;
|
|
46
|
+
|
|
47
|
+
setTimeout(() => {
|
|
48
|
+
this.isShowing = false;
|
|
49
|
+
this.loadingWidth = 0;
|
|
50
|
+
}, 1000);
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
setLoadingInterval() {
|
|
54
|
+
this.loadingInterval = setInterval(() => {
|
|
55
|
+
if (this.loadingWidth < 100 && this.isLoading) {
|
|
56
|
+
this.loadingWidth += 1 / 4;
|
|
57
|
+
}
|
|
58
|
+
}, 100);
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
mounted() {
|
|
62
|
+
this.setLoading();
|
|
63
|
+
this.setLoadingInterval();
|
|
64
|
+
}
|
|
65
|
+
};
|
|
66
|
+
</script>
|
|
67
|
+
|
|
68
|
+
<style lang="scss" scoped>
|
|
69
|
+
.loading__bar {
|
|
70
|
+
background: #e9ecef;
|
|
71
|
+
width: 100%;
|
|
72
|
+
height: 4px;
|
|
73
|
+
display: flex;
|
|
74
|
+
align-items: center;
|
|
75
|
+
justify-content: flex-start;
|
|
76
|
+
&__content {
|
|
77
|
+
width: var(--loading-bar-w);
|
|
78
|
+
height: 100%;
|
|
79
|
+
background: var(--loading-bar-color);
|
|
80
|
+
transition: width 0.5s;
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
</style>
|
|
@@ -1,331 +1,330 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<section class="products--info">
|
|
3
|
-
<header class="products--info__social--links">
|
|
4
|
-
<a
|
|
5
|
-
href="https://www.facebook.com/burhbrasil"
|
|
6
|
-
target="_blank"
|
|
7
|
-
rel="noopener"
|
|
8
|
-
>
|
|
9
|
-
<i class="fab fa-facebook-f"></i>
|
|
10
|
-
</a>
|
|
11
|
-
<a
|
|
12
|
-
href="https://www.instagram.com/burhbrasil/"
|
|
13
|
-
target="_blank"
|
|
14
|
-
rel="noopener"
|
|
15
|
-
>
|
|
16
|
-
<i class="fab fa-instagram"></i>
|
|
17
|
-
</a>
|
|
18
|
-
<a
|
|
19
|
-
href="https://www.linkedin.com/company/burh/"
|
|
20
|
-
target="_blank"
|
|
21
|
-
rel="noopener"
|
|
22
|
-
>
|
|
23
|
-
<i class="fab fa-linkedin-in"></i>
|
|
24
|
-
</a>
|
|
25
|
-
</header>
|
|
26
|
-
<content class="products--info__content">
|
|
27
|
-
<div class="product__content">
|
|
28
|
-
<p class="product__content--title">Produtos</p>
|
|
29
|
-
<ul class="product__content--list">
|
|
30
|
-
<li><a :href="`${baseAppUrl}/busca`">Busca Avançada</a></li>
|
|
31
|
-
<li>
|
|
32
|
-
<a :href="`${oldBusinessUrl}/burh/vagas`"
|
|
33
|
-
>Recrutamento</a
|
|
34
|
-
>
|
|
35
|
-
</li>
|
|
36
|
-
<li>
|
|
37
|
-
<a :href="`${oldBusinessUrl}/app/university`"
|
|
38
|
-
>Busca por Universidades</a
|
|
39
|
-
>
|
|
40
|
-
</li>
|
|
41
|
-
<li>
|
|
42
|
-
<a :href="`${baseAppUrl}/video-entrevista`"
|
|
43
|
-
>Vídeo Entrevista</a
|
|
44
|
-
>
|
|
45
|
-
</li>
|
|
46
|
-
<li>
|
|
47
|
-
<a :href="`${baseAppUrl}/trabalhe-conosco`"
|
|
48
|
-
>Trabalhe Conosco</a
|
|
49
|
-
>
|
|
50
|
-
</li>
|
|
51
|
-
<li>
|
|
52
|
-
<a :href="`${baseAppUrl}/universidade-corpotativa`"
|
|
53
|
-
>Universidade Corporativa</a
|
|
54
|
-
>
|
|
55
|
-
</li>
|
|
56
|
-
<li>
|
|
57
|
-
<a :href="`${baseAppUrl}/testes`"
|
|
58
|
-
>Testes Online Personalizados</a
|
|
59
|
-
>
|
|
60
|
-
</li>
|
|
61
|
-
<li>
|
|
62
|
-
<a :href="`${baseAppUrl}/disc`">Teste Profiler DISC</a>
|
|
63
|
-
</li>
|
|
64
|
-
<li><a :href="`${baseAppUrl}/buffer`">Buffer</a></li>
|
|
65
|
-
<li><a :href="`${baseAppUrl}/sms`">Envio de SMS</a></li>
|
|
66
|
-
</ul>
|
|
67
|
-
</div>
|
|
68
|
-
<div class="product__content">
|
|
69
|
-
<p class="product__content--title">A Empresa</p>
|
|
70
|
-
<ul class="product__content--list">
|
|
71
|
-
<li><a :href="`${baseAppUrl}`">Burh Empresas</a></li>
|
|
72
|
-
<li>
|
|
73
|
-
<a :href="`${baseAppUrl}/cadastrar`">Divulgar Vagas</a>
|
|
74
|
-
</li>
|
|
75
|
-
<li>
|
|
76
|
-
<a :href="`${url}/busca`"
|
|
77
|
-
>Encontre Novas Oportunidades</a
|
|
78
|
-
>
|
|
79
|
-
</li>
|
|
80
|
-
<li><a :href="`${url}/sobre-o-burh`" target="_blank">Propósito</a></li>
|
|
81
|
-
<li><a href="https://blog.burh.com.br" target="_blank">Blog</a></li>
|
|
82
|
-
<li>
|
|
83
|
-
<a :href="`${url}/carreiras/burh`" target="_blank">Trabalhe Conosco</a>
|
|
84
|
-
</li>
|
|
85
|
-
</ul>
|
|
86
|
-
</div>
|
|
87
|
-
<div class="product__content">
|
|
88
|
-
<p class="product__content--title">Ajuda</p>
|
|
89
|
-
<ul class="product__content--list">
|
|
90
|
-
<li>
|
|
91
|
-
<a href="https://burhbrasil.zendesk.com/hc/pt-br" target="_blank"
|
|
92
|
-
>Central de Ajuda </a
|
|
93
|
-
>
|
|
94
|
-
</li>
|
|
95
|
-
<!-- <li>Perguntas Frequentes</li> -->
|
|
96
|
-
<li>
|
|
97
|
-
<a href="https://burh.typeform.com/to/hiBe6l" target="_blank"
|
|
98
|
-
>Avalie sua Experiência</a
|
|
99
|
-
>
|
|
100
|
-
</li>
|
|
101
|
-
</ul>
|
|
102
|
-
</div>
|
|
103
|
-
<div class="product__content">
|
|
104
|
-
<p class="product__content--title">Burh</p>
|
|
105
|
-
<ul class="product__content--list">
|
|
106
|
-
<li>
|
|
107
|
-
Burh Serviços de Informação na Internet LTDA. CNPJ
|
|
108
|
-
26.356.119/0001-95
|
|
109
|
-
</li>
|
|
110
|
-
<li>
|
|
111
|
-
<a href="mailto:empresas@burh.com.br"
|
|
112
|
-
>empresas@burh.com.br</a
|
|
113
|
-
>
|
|
114
|
-
</li>
|
|
115
|
-
<li>
|
|
116
|
-
<a
|
|
117
|
-
href="https://web.whatsapp.com/send?phone=551140034341"
|
|
118
|
-
><i class="fab fa-whatsapp ml-1"></i> (11) 4003-4341</a>
|
|
119
|
-
</li>
|
|
120
|
-
<li>
|
|
121
|
-
<a
|
|
122
|
-
href="https://www.google.com/maps/place/Burh+Tecnologia/@-23.5061185,-47.4608334,17z/data=!3m1!4b1!4m5!3m4!1s0x94c58b42e531c811:0x2c4c3b509767e68c!8m2!3d-23.506231!4d-47.4586757"
|
|
123
|
-
>
|
|
124
|
-
Av. Juscelino Kubitschek de Oliveira, 660, 12º
|
|
125
|
-
andar, Vila Marina Dias, Sorocaba/SP
|
|
126
|
-
</a>
|
|
127
|
-
</li>
|
|
128
|
-
</ul>
|
|
129
|
-
</div>
|
|
130
|
-
</content>
|
|
131
|
-
<footer class="products--info__footer">
|
|
132
|
-
<div class="footer__links">
|
|
133
|
-
<div class="burh__logo">
|
|
134
|
-
<img src="/img/brand/burh-imagotipo.svg" alt="Burh" />
|
|
135
|
-
</div>
|
|
136
|
-
<ul>
|
|
137
|
-
<li>
|
|
138
|
-
<a :href="`${url}/sobre-o-burh`" target="_blank"
|
|
139
|
-
>Sobre o Burh</a
|
|
140
|
-
>
|
|
141
|
-
</li>
|
|
142
|
-
<li><a>Produtos Burh</a></li>
|
|
143
|
-
<li>
|
|
144
|
-
<a
|
|
145
|
-
:href="`${url}/termos-de-uso#privacidade`"
|
|
146
|
-
target="_blank"
|
|
147
|
-
>Privacidade</a
|
|
148
|
-
>
|
|
149
|
-
</li>
|
|
150
|
-
<li>
|
|
151
|
-
<a :href="`${url}/termos-de-uso`" target="_blank"
|
|
152
|
-
>Termos</a
|
|
153
|
-
>
|
|
154
|
-
</li>
|
|
155
|
-
</ul>
|
|
156
|
-
</div>
|
|
157
|
-
<div class="footer__text">
|
|
158
|
-
<div class="copyright text-center text-lg-right">
|
|
159
|
-
© {{ year }} Feito com <span id="heart"></span>
|
|
160
|
-
no Brasil para o mundo.
|
|
161
|
-
</div>
|
|
162
|
-
</div>
|
|
163
|
-
</footer>
|
|
164
|
-
</section>
|
|
165
|
-
</template>
|
|
166
|
-
|
|
167
|
-
<script>
|
|
168
|
-
export default {
|
|
169
|
-
name: 'ProductsFooter',
|
|
170
|
-
data() {
|
|
171
|
-
return {
|
|
172
|
-
year: new Date().getFullYear(),
|
|
173
|
-
url: '',
|
|
174
|
-
baseAppUrl: '',
|
|
175
|
-
oldBusinessUrl: ''
|
|
176
|
-
};
|
|
177
|
-
},
|
|
178
|
-
mounted() {
|
|
179
|
-
this.url = process.env.baseUserUrl;
|
|
180
|
-
this.baseAppUrl = process.env.baseAppUrl;
|
|
181
|
-
this.oldBusinessUrl = process.env.oldBusinessUrl;
|
|
182
|
-
}
|
|
183
|
-
};
|
|
184
|
-
</script>
|
|
185
|
-
|
|
186
|
-
<style lang="scss" scoped>
|
|
187
|
-
$primaryColor: #1da1f1;
|
|
188
|
-
|
|
189
|
-
.products--info {
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
margin:
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
margin-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<section class="products--info container-fluid container-fluid--bu">
|
|
3
|
+
<header class="products--info__social--links">
|
|
4
|
+
<a
|
|
5
|
+
href="https://www.facebook.com/burhbrasil"
|
|
6
|
+
target="_blank"
|
|
7
|
+
rel="noopener"
|
|
8
|
+
>
|
|
9
|
+
<i class="fab fa-facebook-f"></i>
|
|
10
|
+
</a>
|
|
11
|
+
<a
|
|
12
|
+
href="https://www.instagram.com/burhbrasil/"
|
|
13
|
+
target="_blank"
|
|
14
|
+
rel="noopener"
|
|
15
|
+
>
|
|
16
|
+
<i class="fab fa-instagram"></i>
|
|
17
|
+
</a>
|
|
18
|
+
<a
|
|
19
|
+
href="https://www.linkedin.com/company/burh/"
|
|
20
|
+
target="_blank"
|
|
21
|
+
rel="noopener"
|
|
22
|
+
>
|
|
23
|
+
<i class="fab fa-linkedin-in"></i>
|
|
24
|
+
</a>
|
|
25
|
+
</header>
|
|
26
|
+
<content class="products--info__content">
|
|
27
|
+
<div class="product__content">
|
|
28
|
+
<p class="product__content--title">Produtos</p>
|
|
29
|
+
<ul class="product__content--list">
|
|
30
|
+
<li><a :href="`${baseAppUrl}/busca`">Busca Avançada</a></li>
|
|
31
|
+
<li>
|
|
32
|
+
<a :href="`${oldBusinessUrl}/burh/vagas`"
|
|
33
|
+
>Recrutamento</a
|
|
34
|
+
>
|
|
35
|
+
</li>
|
|
36
|
+
<li>
|
|
37
|
+
<a :href="`${oldBusinessUrl}/app/university`"
|
|
38
|
+
>Busca por Universidades</a
|
|
39
|
+
>
|
|
40
|
+
</li>
|
|
41
|
+
<li>
|
|
42
|
+
<a :href="`${baseAppUrl}/video-entrevista`"
|
|
43
|
+
>Vídeo Entrevista</a
|
|
44
|
+
>
|
|
45
|
+
</li>
|
|
46
|
+
<li>
|
|
47
|
+
<a :href="`${baseAppUrl}/trabalhe-conosco`"
|
|
48
|
+
>Trabalhe Conosco</a
|
|
49
|
+
>
|
|
50
|
+
</li>
|
|
51
|
+
<li>
|
|
52
|
+
<a :href="`${baseAppUrl}/universidade-corpotativa`"
|
|
53
|
+
>Universidade Corporativa</a
|
|
54
|
+
>
|
|
55
|
+
</li>
|
|
56
|
+
<li>
|
|
57
|
+
<a :href="`${baseAppUrl}/testes`"
|
|
58
|
+
>Testes Online Personalizados</a
|
|
59
|
+
>
|
|
60
|
+
</li>
|
|
61
|
+
<li>
|
|
62
|
+
<a :href="`${baseAppUrl}/disc`">Teste Profiler DISC</a>
|
|
63
|
+
</li>
|
|
64
|
+
<li><a :href="`${baseAppUrl}/buffer`">Buffer</a></li>
|
|
65
|
+
<li><a :href="`${baseAppUrl}/sms`">Envio de SMS</a></li>
|
|
66
|
+
</ul>
|
|
67
|
+
</div>
|
|
68
|
+
<div class="product__content">
|
|
69
|
+
<p class="product__content--title">A Empresa</p>
|
|
70
|
+
<ul class="product__content--list">
|
|
71
|
+
<li><a :href="`${baseAppUrl}`">Burh Empresas</a></li>
|
|
72
|
+
<li>
|
|
73
|
+
<a :href="`${baseAppUrl}/cadastrar`">Divulgar Vagas</a>
|
|
74
|
+
</li>
|
|
75
|
+
<li>
|
|
76
|
+
<a :href="`${url}/busca`"
|
|
77
|
+
>Encontre Novas Oportunidades</a
|
|
78
|
+
>
|
|
79
|
+
</li>
|
|
80
|
+
<li><a :href="`${url}/sobre-o-burh`" target="_blank">Propósito</a></li>
|
|
81
|
+
<li><a href="https://blog.burh.com.br" target="_blank">Blog</a></li>
|
|
82
|
+
<li>
|
|
83
|
+
<a :href="`${url}/carreiras/burh`" target="_blank">Trabalhe Conosco</a>
|
|
84
|
+
</li>
|
|
85
|
+
</ul>
|
|
86
|
+
</div>
|
|
87
|
+
<div class="product__content">
|
|
88
|
+
<p class="product__content--title">Ajuda</p>
|
|
89
|
+
<ul class="product__content--list">
|
|
90
|
+
<li>
|
|
91
|
+
<a href="https://burhbrasil.zendesk.com/hc/pt-br" target="_blank"
|
|
92
|
+
>Central de Ajuda </a
|
|
93
|
+
>
|
|
94
|
+
</li>
|
|
95
|
+
<!-- <li>Perguntas Frequentes</li> -->
|
|
96
|
+
<li>
|
|
97
|
+
<a href="https://burh.typeform.com/to/hiBe6l" target="_blank"
|
|
98
|
+
>Avalie sua Experiência</a
|
|
99
|
+
>
|
|
100
|
+
</li>
|
|
101
|
+
</ul>
|
|
102
|
+
</div>
|
|
103
|
+
<div class="product__content">
|
|
104
|
+
<p class="product__content--title">Burh</p>
|
|
105
|
+
<ul class="product__content--list">
|
|
106
|
+
<li>
|
|
107
|
+
Burh Serviços de Informação na Internet LTDA. CNPJ
|
|
108
|
+
26.356.119/0001-95
|
|
109
|
+
</li>
|
|
110
|
+
<li>
|
|
111
|
+
<a href="mailto:empresas@burh.com.br"
|
|
112
|
+
>empresas@burh.com.br</a
|
|
113
|
+
>
|
|
114
|
+
</li>
|
|
115
|
+
<li>
|
|
116
|
+
<a
|
|
117
|
+
href="https://web.whatsapp.com/send?phone=551140034341"
|
|
118
|
+
><i class="fab fa-whatsapp ml-1"></i> (11) 4003-4341</a>
|
|
119
|
+
</li>
|
|
120
|
+
<li>
|
|
121
|
+
<a
|
|
122
|
+
href="https://www.google.com/maps/place/Burh+Tecnologia/@-23.5061185,-47.4608334,17z/data=!3m1!4b1!4m5!3m4!1s0x94c58b42e531c811:0x2c4c3b509767e68c!8m2!3d-23.506231!4d-47.4586757"
|
|
123
|
+
>
|
|
124
|
+
Av. Juscelino Kubitschek de Oliveira, 660, 12º
|
|
125
|
+
andar, Vila Marina Dias, Sorocaba/SP
|
|
126
|
+
</a>
|
|
127
|
+
</li>
|
|
128
|
+
</ul>
|
|
129
|
+
</div>
|
|
130
|
+
</content>
|
|
131
|
+
<footer class="products--info__footer">
|
|
132
|
+
<div class="footer__links">
|
|
133
|
+
<div class="burh__logo">
|
|
134
|
+
<img src="/img/brand/burh-imagotipo.svg" alt="Burh" />
|
|
135
|
+
</div>
|
|
136
|
+
<ul>
|
|
137
|
+
<li>
|
|
138
|
+
<a :href="`${url}/sobre-o-burh`" target="_blank"
|
|
139
|
+
>Sobre o Burh</a
|
|
140
|
+
>
|
|
141
|
+
</li>
|
|
142
|
+
<li><a>Produtos Burh</a></li>
|
|
143
|
+
<li>
|
|
144
|
+
<a
|
|
145
|
+
:href="`${url}/termos-de-uso#privacidade`"
|
|
146
|
+
target="_blank"
|
|
147
|
+
>Privacidade</a
|
|
148
|
+
>
|
|
149
|
+
</li>
|
|
150
|
+
<li>
|
|
151
|
+
<a :href="`${url}/termos-de-uso`" target="_blank"
|
|
152
|
+
>Termos</a
|
|
153
|
+
>
|
|
154
|
+
</li>
|
|
155
|
+
</ul>
|
|
156
|
+
</div>
|
|
157
|
+
<div class="footer__text">
|
|
158
|
+
<div class="copyright text-center text-lg-right">
|
|
159
|
+
© {{ year }} Feito com <span id="heart"></span>
|
|
160
|
+
no Brasil para o mundo.
|
|
161
|
+
</div>
|
|
162
|
+
</div>
|
|
163
|
+
</footer>
|
|
164
|
+
</section>
|
|
165
|
+
</template>
|
|
166
|
+
|
|
167
|
+
<script>
|
|
168
|
+
export default {
|
|
169
|
+
name: 'ProductsFooter',
|
|
170
|
+
data() {
|
|
171
|
+
return {
|
|
172
|
+
year: new Date().getFullYear(),
|
|
173
|
+
url: '',
|
|
174
|
+
baseAppUrl: '',
|
|
175
|
+
oldBusinessUrl: ''
|
|
176
|
+
};
|
|
177
|
+
},
|
|
178
|
+
mounted() {
|
|
179
|
+
this.url = process.env.baseUserUrl;
|
|
180
|
+
this.baseAppUrl = process.env.baseAppUrl;
|
|
181
|
+
this.oldBusinessUrl = process.env.oldBusinessUrl;
|
|
182
|
+
}
|
|
183
|
+
};
|
|
184
|
+
</script>
|
|
185
|
+
|
|
186
|
+
<style lang="scss" scoped>
|
|
187
|
+
$primaryColor: #1da1f1;
|
|
188
|
+
|
|
189
|
+
.products--info {
|
|
190
|
+
padding: 0 40px;
|
|
191
|
+
margin: 0 auto;
|
|
192
|
+
margin-top: 100px;
|
|
193
|
+
display: block;
|
|
194
|
+
&__social--links {
|
|
195
|
+
padding: 15px 0;
|
|
196
|
+
display: flex;
|
|
197
|
+
align-items: center;
|
|
198
|
+
border-bottom: 1px solid #eee;
|
|
199
|
+
a {
|
|
200
|
+
font-size: 1.5rem;
|
|
201
|
+
color: $primaryColor;
|
|
202
|
+
margin: 0 20px;
|
|
203
|
+
&:first-child {
|
|
204
|
+
margin-left: 0;
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
&__content {
|
|
209
|
+
display: grid;
|
|
210
|
+
grid-template-columns: repeat(4, 1fr);
|
|
211
|
+
gap: 20px;
|
|
212
|
+
align-items: flex-start;
|
|
213
|
+
@media (max-width: 1200px) {
|
|
214
|
+
& {
|
|
215
|
+
grid-template-columns: repeat(4, 1fr);
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
@media (max-width: 990px) {
|
|
219
|
+
& {
|
|
220
|
+
grid-template-columns: repeat(3, 1fr);
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
@media (max-width: 720px) {
|
|
224
|
+
& {
|
|
225
|
+
grid-template-columns: repeat(2, 1fr);
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
@media (max-width: 500px) {
|
|
229
|
+
& {
|
|
230
|
+
grid-template-columns: 1fr;
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
.product__content {
|
|
234
|
+
&--title {
|
|
235
|
+
font-weight: bold;
|
|
236
|
+
margin-bottom: 10px;
|
|
237
|
+
margin-top: 25px;
|
|
238
|
+
font-size: 1rem;
|
|
239
|
+
}
|
|
240
|
+
&--list {
|
|
241
|
+
list-style: none;
|
|
242
|
+
margin: 0;
|
|
243
|
+
padding: 0;
|
|
244
|
+
margin-top: 25px;
|
|
245
|
+
li {
|
|
246
|
+
margin: 10px 0;
|
|
247
|
+
font-size: 0.875rem;
|
|
248
|
+
a {
|
|
249
|
+
display: block;
|
|
250
|
+
cursor: pointer;
|
|
251
|
+
color: #525f7f;
|
|
252
|
+
&:hover {
|
|
253
|
+
text-decoration: underline;
|
|
254
|
+
}
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
}
|
|
259
|
+
}
|
|
260
|
+
&__footer {
|
|
261
|
+
margin-top: 20px;
|
|
262
|
+
border-top: 1px solid #eee;
|
|
263
|
+
padding: 30px 0;
|
|
264
|
+
display: flex;
|
|
265
|
+
align-items: center;
|
|
266
|
+
justify-content: space-between;
|
|
267
|
+
font-size: 0.875rem;
|
|
268
|
+
@media (max-width: 960px) {
|
|
269
|
+
& {
|
|
270
|
+
flex-direction: column;
|
|
271
|
+
justify-content: center;
|
|
272
|
+
.footer__links {
|
|
273
|
+
margin-bottom: 20px;
|
|
274
|
+
}
|
|
275
|
+
}
|
|
276
|
+
}
|
|
277
|
+
.footer__links {
|
|
278
|
+
display: flex;
|
|
279
|
+
align-items: center;
|
|
280
|
+
justify-content: flex-start;
|
|
281
|
+
font-size: 0.875rem;
|
|
282
|
+
.burh__logo {
|
|
283
|
+
width: 120px;
|
|
284
|
+
img {
|
|
285
|
+
display: block;
|
|
286
|
+
width: 100%;
|
|
287
|
+
// filter: brightness(0.5);
|
|
288
|
+
}
|
|
289
|
+
@media (max-width: 1150px) {
|
|
290
|
+
& {
|
|
291
|
+
display: none;
|
|
292
|
+
}
|
|
293
|
+
}
|
|
294
|
+
}
|
|
295
|
+
ul {
|
|
296
|
+
margin: 0 !important;
|
|
297
|
+
@media (max-width: 1150px) {
|
|
298
|
+
& {
|
|
299
|
+
padding: 0;
|
|
300
|
+
li a:first-child {
|
|
301
|
+
padding-left: 0;
|
|
302
|
+
}
|
|
303
|
+
}
|
|
304
|
+
}
|
|
305
|
+
li {
|
|
306
|
+
display: inline-block;
|
|
307
|
+
@media (max-width: 640px) {
|
|
308
|
+
& {
|
|
309
|
+
display: block;
|
|
310
|
+
text-align: center;
|
|
311
|
+
a {
|
|
312
|
+
padding: 20px;
|
|
313
|
+
}
|
|
314
|
+
}
|
|
315
|
+
}
|
|
316
|
+
a {
|
|
317
|
+
display: block;
|
|
318
|
+
cursor: pointer;
|
|
319
|
+
color: #525f7f;
|
|
320
|
+
padding: 0 20px;
|
|
321
|
+
&:hover {
|
|
322
|
+
text-decoration: underline;
|
|
323
|
+
}
|
|
324
|
+
}
|
|
325
|
+
}
|
|
326
|
+
}
|
|
327
|
+
}
|
|
328
|
+
}
|
|
329
|
+
}
|
|
330
|
+
</style>
|