generated from ijkml/nuxt-flint
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.vue
29 lines (25 loc) · 724 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
<script setup lang="ts">
useHead({
titleTemplate: (titleChunk) => {
return titleChunk ? `${titleChunk} · PennyPay` : 'PennyPay';
},
});
useServerSeoMeta({
title: 'PennyPay',
ogTitle: 'PennyPay · Accept payments globally with no structural lock-in',
description: 'Accept payments globally with no structural lock-in.',
ogDescription: 'Accept payments globally with no structural lock-in.',
ogImage: 'https://pennypay.netlify.app/og.png',
ogImageAlt: 'Screenshot of the PennyPay homepage',
twitterCard: 'summary_large_image',
twitterCreator: '@ijk_ml',
});
</script>
<template>
<NuxtLayout>
<NuxtLoadingIndicator />
<NuxtPage />
</NuxtLayout>
</template>
<style lang="scss">
</style>