-
Notifications
You must be signed in to change notification settings - Fork 103
/
Copy pathapp.vue
41 lines (38 loc) · 1000 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
<template>
<DefaultLayout>
<NuxtPage />
</DefaultLayout>
</template>
<script setup lang="ts">
import DefaultLayout from "~/layouts/default.vue";
import "@kestra-io/ui-libs/style.css";
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>