Use nuxt 4 folder structure

This commit is contained in:
Nicola Spadari
2025-01-02 18:23:18 +01:00
parent 96cfcc2f20
commit cfe9b17162
29 changed files with 5 additions and 3 deletions

26
app/pages/[...all].vue Normal file
View File

@@ -0,0 +1,26 @@
<template>
<div grid place-items-center px-6 py-24 sm="py-32" lg="px-8">
<div text-center>
<p text-base text-emerald-500 font-semibold>
404
</p>
<h1 mt-4 text-3xl text-neutral-300 font-bold tracking-tight sm="text-5xl">
Page not found
</h1>
<p mt-6 text-base text-neutral-400 leading-7>
Sorry, we couldn't find the page you're looking for.
</p>
<div mt-10 flex items-center justify-center gap-x-6>
<Hyperlink to="/" px-7>
Back
</Hyperlink>
</div>
</div>
</div>
</template>
<script lang="ts" setup>
definePageMeta({
layout: "blank"
});
</script>