-
Notifications
You must be signed in to change notification settings - Fork 45
/
app.vue
38 lines (34 loc) · 825 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 lang="pug">
v-app
v-main
v-container
ui-header
ui-hero
ui-hairstyle
ui-footer
</template>
<script setup lang="ts">
const title = 'Change Hairstyle AI for FREE'
const description = 'Get a new hairstyle in seconds, for free.'
const image = 'https://changehairstyleai.com/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(0, 0, 0, .15) 0, rgba(0, 0, 0, 0) 100%)
.v-container
max-width 1000px
</style>