@burh/nuxt-core 1.0.291 → 1.0.293
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.
- package/assets/sass/burh-ds/atoms/_buttons.scss +219 -219
- package/assets/sass/burh-ds/content/_interface-spa.scss +306 -306
- package/assets/sass/burh-ds/content/_main-content.scss +25 -25
- package/assets/sass/burh-ds/variables/_colors.scss +350 -350
- package/components/argon-core/BaseDropdown.vue +114 -114
- package/components/argon-core/BaseProgress.vue +121 -121
- package/components/argon-core/Modal.vue +184 -184
- package/components/burh-ds/Cards/FeatureBusinessCard.vue +74 -74
- package/components/burh-ds/Cards/PerformanceCard.vue +81 -81
- package/components/burh-ds/Cards/RecruitmentCard.vue +214 -214
- package/components/burh-ds/Collapse/DefaultCollapse.vue +70 -70
- package/components/burh-ds/Curriculum/UserCurriculum/UserCvMiddle.vue +497 -496
- package/components/burh-ds/Curriculum/UserCurriculum/index.vue +245 -245
- package/components/burh-ds/Dropdown/JobStatusDropdown.vue +145 -145
- package/components/burh-ds/Headings/AppHeader.vue +162 -162
- package/components/burh-ds/Inputs/SearchInput.vue +64 -64
- package/components/burh-ds/Lists/VagasSimple.vue +404 -404
- package/components/burh-ds/Loadings/LoadingFullPage.vue +68 -68
- package/components/burh-ds/Loads/LoadingBar.vue +83 -83
- package/components/burh-ds/Modals/MobileModal.vue +65 -65
- package/components/burh-ds/Modals/NewUserModal.vue +87 -87
- package/components/burh-ds/Modals/SharedModal.vue +270 -270
- package/components/burh-ds/Skeleton/BaseCardUniversity.vue +79 -79
- package/components/burh-ds/Skeleton/BaseCardUser.vue +84 -84
- package/components/burh-ds/Skeleton/Cards.vue +86 -86
- package/components/burh-ds/Skeleton/Home.vue +100 -100
- package/components/burh-ds/Skeleton/RecruitmentCard.vue +169 -169
- package/components/burh-ds/Skeleton/SkeletonAnimate.vue +96 -96
- package/components/layouts/burh-ds/footer/ProductsFooter.vue +330 -330
- package/nuxt.config.js +206 -206
- package/package.json +1 -1
|
@@ -1,330 +1,330 @@
|
|
|
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: #4460F4;
|
|
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>
|
|
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: #4460F4;
|
|
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>
|