forked from meistrari/prompts-royale
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.vue
57 lines (51 loc) · 1.29 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
<script lang="ts" setup>
import { Toaster } from 'vue-sonner'
useHead({
link: [
{
rel: 'icon',
type: 'image/svg+xml',
href: 'https://api.iconify.design/tabler:swords.svg',
},
],
title: 'Prompts Royale',
meta: [
{ property: 'og:image', content: '/og-image.png' },
],
})
useSeoMeta({
ogDescription: 'Automatically generate and rank prompts for GPT',
ogImage: '/og-image.png',
ogUrl: 'https://promptsroyale.com',
ogTitle: 'Prompts Royale',
ogType: 'website',
twitterCard: 'app',
twitterSite: '@henrycunh',
twitterDescription: 'Automatically generate and rank prompts for GPT',
twitterImage: '/og-image.png',
twitterTitle: 'Prompts Royale',
})
runMigrations()
</script>
<template>
<div>
<UContainer>
<NuxtLayout />
</UContainer>
<ClientOnly>
<Toaster position="top-right" />
</ClientOnly>
</div>
</template>
<style>
body {
-webkit-font-smoothing: antialiased;
font-smooth: antialiased;
margin: 0;
background: #f5f3f7;
}
* {
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
/* outline: 1px solid red; */
}
</style>