Update nuxt to version 4 (#92)
* Nuxt 3.17.4 and other dependencies updated * Temporary fix (maybe) of the Inline Code * Update nuxt to version 4
This commit is contained in:
25
app/pages/[...slug].vue
Normal file
25
app/pages/[...slug].vue
Normal file
@@ -0,0 +1,25 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user