-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror.vue
28 lines (26 loc) · 1.1 KB
/
error.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
<template>
<main id="app" class="bg-gray-900 v-lines agus">
<Navigation />
<Header
:tag="t('common.error-404')"
:title="t('common.not-found')" />
<Footer />
</main>
</template>
<script setup>
const route = useRoute();
const { t } = useI18n()
useHead({
title: t('section.404.title') + ' | Skuteczny Plan',
meta: [
{ hid: "description", name: "description", content: t('section.404.title') },
{ hid: "twitter:image", name: "twitter:image", content: "https://www.skutecznyplan.pl/skuteczny-plan-twitter.png" },
{ hid: "twitter:card", name: "twitter:card", content: "summary_large_image" },
{ hid: "og:image",name: "og:image", content: "https://www.skutecznyplan.pl/skuteczny-plan-og.png" },
{ hid: "og:title", name: "og:title", content: t('section.404.title') + ' | Skuteczny Plan' },
{ hid: "og:description", name: "og:description", content: t('section.404.title') },
{ hid: "description", name: "description", content: t('section.404.title') },
{ hid: "og:url", name: "og:url", content: "https://www.skutecznyplan.pl" + route.params.fullPath }
],
})
</script>