You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
532 B
31 lines
532 B
<script setup lang="ts">
|
|
useHead({
|
|
meta: [
|
|
{ name: 'viewport', content: 'width=device-width, initial-scale=1' }
|
|
],
|
|
link: [
|
|
{ rel: 'icon', href: '/favicon.ico' }
|
|
],
|
|
htmlAttrs: {
|
|
lang: 'en'
|
|
}
|
|
})
|
|
|
|
useSeoMeta({
|
|
ogImage: 'https://landing-template.nuxt.dev/social-card.png',
|
|
twitterImage: 'https://landing-template.nuxt.dev/social-card.png',
|
|
twitterCard: 'summary_large_image'
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<AppHeader />
|
|
|
|
<UMain>
|
|
<NuxtPage />
|
|
</UMain>
|
|
|
|
<AppFooter />
|
|
|
|
<UNotifications />
|
|
</template>
|