26 lines
408 B
Vue
26 lines
408 B
Vue
<script setup lang="ts">
|
|
useHead({
|
|
title: '404',
|
|
meta: [
|
|
{
|
|
name: 'description',
|
|
content: 'Page not found',
|
|
},
|
|
],
|
|
})
|
|
|
|
// defineOgImageComponent('About', {
|
|
// headline: 'Wrong Path',
|
|
// title: '404',
|
|
// description: 'Page Not Found',
|
|
// })
|
|
</script>
|
|
|
|
<template>
|
|
<div class="py-5">
|
|
<div class="container max-w-xl mx-auto">
|
|
<Logo404 />
|
|
</div>
|
|
</div>
|
|
</template>
|