Updated Map View

This commit is contained in:
2026-06-16 14:42:05 +10:00
parent 3aba428d2a
commit badb4dc46f
4 changed files with 142 additions and 17 deletions
+23
View File
@@ -0,0 +1,23 @@
<script setup lang="ts">
import MainLayout from "@/Layouts/MainLayout.vue";
import GlassBox from "@/Components/FlightsGoneBy/GlassBox.vue";
import {usePage} from "@inertiajs/vue3";
import {SharedProps} from "@/Types/types";
const page = usePage<SharedProps>()
defineOptions({ layout: MainLayout })
defineProps<{
statusCode : number
statusTitle : string
statusMessage : string
}>()
</script>
<template>
<GlassBox :title="statusTitle" :blurb="statusMessage">
</GlassBox>
</template>
<style scoped>
</style>