-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathapp.vue
38 lines (35 loc) · 909 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
<script setup>
const title = ref('Palette Pilot - Generate Awesome Color Palette for your UI')
const description = ref(
'Explore Palette Pilot magic: transforming your images into color palettes and giving UI ideas. Perfect for creatives'
)
useHead({
bodyAttrs: {
class:
'text-black bg-white dark:bg-black dark:text-white transition-colors ease-in-out duration-200 2xl:overflow-hidden'
}
})
useSeoMeta({
title: title,
description: description,
ogTitle: title,
ogDescription: description,
twitterTitle: title,
twitterDescription: description,
twitterCard: 'summary_large_image',
icon: '/favicon.ico',
lang: 'es',
ogImage: '[og:image]',
twitterImage: '[twitter:image]'
})
defineOgImageComponent('HomeOG', {
title: title
})
</script>
<template>
<Header />
<NuxtPage />
</template>
<style>
@import url('primevue/resources/themes/aura-dark-noir/theme.css');
</style>