forked from zyyv/chris.me
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.vue
34 lines (32 loc) · 1.15 KB
/
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
<template>
<div>
<VitePwaManifest />
<NuxtLoadingIndicator :height="1"
color="repeating-linear-gradient(to right,rgba(192,132,252,1) 0%,rgba(248,113,113,1) 50%,rgba(45,212,191,1) 100%)" />
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
</div>
</template>
<script setup>
useHead({
title: 'Chris Zhu',
link: [
{ rel: 'icon', type: 'image/x-icon', href: '/logo-light.svg' },
],
meta: [
{ name: 'author', content: 'Chris' },
{ hid: 'description', name: 'description', content: 'Chris\' Portfolio' },
{ hid: 'keywords', name: 'keywords', content: 'Chris, Chirs Zhu, Blog, Portfolio' },
{ name: 'twitter:card', content: 'summary' },
{ name: 'twitter:site', content: '@chris_zyyv' },
{ property: 'og:title', content: 'Chris Zhu' },
{ property: 'og:image', content: 'https://zyob.top/logo-light.svg' },
{ 'http-equiv': 'pragma', 'content': 'no-cache' },
{ 'http-equiv': 'cache-control', 'content': 'no-cache' },
{ 'http-equiv': 'expires', 'content': '0' },
],
charset: 'utf-8',
viewport: 'width=device-width, initial-scale=1.0, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0',
})
</script>