-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.vue
54 lines (53 loc) · 1.11 KB
/
app.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<template>
<NuxtLayout>
<div class="content-wrapper">
<NuxtPage />
</div>
</NuxtLayout>
</template>
<script setup lang="ts">
useHead({
title: "Copa Hemocione",
meta: [
{
hid: "description",
name: "description",
content:
"Encontre copas de doação de sangue próximas a você e ajude a salvar vidas!",
},
{
hid: "og:description",
property: "og:description",
content:
"Encontre copas de doação de sangue próximas a você e ajude a salvar vidas!",
},
{
hid: "og:image",
property: "og:image",
content:
"https://cdn.hemocione.com.br/events/uploads/1699940076138-logo_hemocione_fb-2(1).png",
},
{
hid: "twitter:card",
name: "twitter:card",
content: "summary_large_image",
},
{
hid: "viewport",
name: "viewport",
content: "width=device-width, initial-scale=1.0, maximum-scale=1.0",
},
],
});
</script>
<style scoped>
.content-wrapper {
width: 70vw;
max-width: 100%;
}
@media screen and (max-width: 753px) {
.content-wrapper {
width: 100vw;
}
}
</style>