-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.vue
60 lines (56 loc) · 1.27 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
55
56
57
58
59
60
<template>
<div class="dark min-h-screen dark:bg-gray-900">
<BasePageContainer>
<NuxtPage />
</BasePageContainer>
</div>
</template>
<script setup lang="ts">
import AOS from 'aos'
import 'aos/dist/aos.css'
import '@/assets/scss/main.scss'
import BasePageContainer from './components/BasePageContainer.vue'
const structuredData = JSON.stringify({
'@context': 'https://schema.org',
'@type': 'SoftwareApplication',
name: 'Antares SQL',
operatingSystem: 'Windows 10, Windows 7, Linux, OSX',
applicationCategory: 'DeveloperApplication',
offers: {
'@type': 'Offer',
price: '0'
},
sameAs: [
'https://antares-sql.app',
'https://github.com/antares-sql/antares'
],
license: 'https://github.com/antares-sql/antares/blob/master/LICENSE',
author: {
'@type': 'Person',
givenName: 'Fabio',
familyName: 'Di Stasio',
birthDate: '1986-02-28',
sameAs: [
'https://github.com/Fabio286',
'https://fabiodistasio.it',
'https://www.linkedin.com/in/distasiofabio/'
]
}
})
useHead({
script: [
{
type: 'application/ld+json',
children: structuredData
},
{
async: true,
defer: true,
src: 'https://buttons.github.io/buttons.js'
}
]
})
onMounted(() => {
AOS.init()
})
</script>