-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.vue
29 lines (26 loc) · 1013 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">
import { useHead } from "#head"
const TITLE = "ОМТУ Календарь"
const DESCRIPTION = "Календарь расписания занятий ОМТУ"
const URL = "https://omtu.jp2.ru"
useHead({
title: TITLE,
link: [{ rel: "icon", type: "image/x-icon", href: "/favicon.ico" }],
meta: [
{ charset: "utf-8" },
{ name: "viewport", content: "width=device-width, initial-scale=1" },
{ hid: "description", name: "description", content: DESCRIPTION },
{ name: "format-detection", content: "telephone=no" },
{ name: "author", content: "https://github.com/SugarF0x" },
{ name: "og:url", content: URL },
{ name: "og:title", content: TITLE },
{ name: "og:description", content: DESCRIPTION },
{ name: "og:image", content: "/form_header.jpg" },
{ hid: "og:image:width", name: "og:image:width", content: "1600" },
{ hid: "og:image:height", name: "og:image:height", content: "800" }
]
})
</script>
<template>
<NuxtPage />
</template>