Added not found page

This commit is contained in:
Viswamedha Nalabotu 2026-03-08 13:11:22 +00:00
parent c802952765
commit 4843ecf9c0

View file

@ -0,0 +1,23 @@
<script setup lang="ts">
import { Result, Button } from 'ant-design-vue'
</script>
<template>
<main class="not-found-page">
<Result status="404" title="404" sub-title="Sorry, the page you visited does not exist.">
<template #extra>
<RouterLink to="/">
<Button type="primary">Back Home</Button>
</RouterLink>
</template>
</Result>
</main>
</template>
<style scoped>
.not-found-page {
min-height: 60vh;
display: grid;
place-items: center;
}
</style>