-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathapp.vue
40 lines (38 loc) · 860 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
39
40
<script setup lang="ts">
useHead({
link: [
{ rel: 'icon', href: '/icon.png' },
{ rel: 'canonical', href: 'https://nuxt.new' },
],
htmlAttrs: {
lang: 'en',
},
bodyAttrs: {
class: 'bg-gray-950',
},
})
useSeoMeta({
title: 'nuxt.new',
ogTitle: 'Kickstart your Nuxt project',
description: 'Open a Nuxt starter on CodeSandbox, StackBlitz or locally to get up and running in a few seconds.',
ogSiteName: 'nuxt.new',
ogImage: 'https://nuxt.new/social-card.png',
ogImageAlt: 'boilerplate',
twitterCard: 'summary_large_image',
twitterSite: '@nuxt_js',
twitterImage: 'https://nuxt.new/social-card.png',
})
</script>
<template>
<div>
<AppHeader />
<UContainer>
<div>
<AppHero />
<StarterList />
<FurtherSection />
</div>
</UContainer>
<AppFooter />
</div>
</template>