21 lines
485 B
Vue
21 lines
485 B
Vue
<script setup>
|
|
import Footer from './Footer.vue'
|
|
</script>
|
|
|
|
<template>
|
|
<div class="w-screen h-screen bg-red-500 text-red-100 flex flex-col items-center justify-between p-12">
|
|
<div></div>
|
|
<div class="space-y-3 text-center w-[50rem]">
|
|
<div class="text-7xl font-semibold">
|
|
404
|
|
</div>
|
|
<div class="text-3xl">
|
|
Page not found
|
|
</div>
|
|
</div>
|
|
<Footer />
|
|
</div>
|
|
</template>
|
|
|
|
|