-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.vue
35 lines (30 loc) · 1.19 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
35
<template>
<div>
<!-- Markup shared across all pages, ex: NavBar -->
<NuxtPage />
</div>
</template>
<script lang="ts" setup>
// DRY Don't Repeat Yourself
useSeoMeta({
titleTemplate: 'EduPulse %separator %s',
description: 'EduPulse is a revolutionary platform designed to manage and balance academic workload between teachers and pupils. It helps in monitoring student workload, offering insights into their efforts and study time, thereby promoting a healthier educational environment.',
ogUrl: 'www.edupulse.rickyraveanu.com',
ogTitle: 'EduPulse',
ogDescription: 'EduPulse is a revolutionary platform designed to manage and balance academic workload between teachers and pupils. It helps in monitoring student workload, offering insights into their efforts and study time, thereby promoting a healthier educational environment.',
ogSiteName: 'EduPulse',
ogImage: 'https://edupulse.rickyraveanu.com/edupulse_og.png',
ogLocale: 'en_US',
ogType: 'website',
twitterCard: 'summary_large_image',
twitterTitle: 'EduPulse',
robots: {
index: true,
follow: true,
noarchive: true,
maxVideoPreview: -1,
maxImagePreview: 'large',
maxSnippet: -1,
},
})
</script>