forked from kestra-io/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.vue
38 lines (36 loc) · 823 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
<template>
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
</template>
<script setup lang="ts">
useHead({
htmlAttrs: {
lang: "en",
},
link: [
{
rel: "icon",
type: "image/png",
href: "/favicon-192x192.png",
},
],
titleTemplate: (titleChunk) => {
return titleChunk &&
titleChunk != "Kestra, Open Source Declarative Data Orchestration"
? `${titleChunk}`
: "Kestra, Open Source Declarative Data Orchestration";
},
});
</script>
<style lang="scss">
.text-gradient {
background: var(
--Text_gradient,
linear-gradient(90deg, #e151f7 2%, #5c47f5 65%)
);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
</style>