-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.vue
51 lines (44 loc) · 992 Bytes
/
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
<template>
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
</template>
<script setup lang="ts">
onMounted(() => {
const nuxtApp = useNuxtApp();
useNuxtApp().$aos().init({
once: true,
});
nuxtApp.hook("page:finish", () => {
window.scrollTo(0, 0);
});
});
const description =
"Effect AI is the data network for training next-gen transparent AI models. Join the workforce by collecting and enriching datasets and get paid instantly.";
useSeoMeta({
title: "Effect AI",
ogTitle: "Effect AI",
twitterTitle: "Effect AI",
ogDescription: description,
twitterDescription: description,
description,
ogImage: "https://effect.ai/logo_icon.png",
twitterImage: "https://effect.ai/logo_icon.png",
ogUrl: "https://effect.ai",
ogSiteName: "Effect AI",
ogType: "website",
twitterCard: "summary",
});
useHead({
htmlAttrs: {
lang: "en",
},
link: [
{
rel: "icon",
type: "image/png",
href: "/favicon.png",
},
],
});
</script>