-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.vue
37 lines (33 loc) · 794 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
<template lang="pug">
v-app
v-main
v-container
ui-header
ui-hero
ui-chat
</template>
<script setup lang="ts">
const title = 'Replicate SupportGPT'
const description = 'Get support, in seconds.'
const image = 'https://replicate-support-gpt.vercel.app/cover.jpg'
useServerSeoMeta({
title,
ogTitle: title,
description,
ogDescription: description,
ogType: 'website',
ogSiteName: title,
ogImage: image,
twitterCard: 'summary_large_image',
twitterTitle: title,
twitterDescription: description,
twitterImage: image,
twitterCreator: 'pontusaurdal'
})
</script>
<style lang="stylus" scoped>
.v-application
background radial-gradient(80% 130% at 50% -30%, rgba(250, 213, 0, .15) 0, rgba(0, 0, 0, 0) 100%)
.v-container
max-width 1000px
</style>