Added About Page

This commit is contained in:
2025-09-18 17:41:24 +10:00
parent 3a5f5ff0b7
commit ee1436c6f0
12 changed files with 161 additions and 8 deletions

View File

@@ -0,0 +1,25 @@
<script setup lang="ts">
import {Tour} from "@/types";
import {usePage} from "@inertiajs/vue3";
import AppLayout from "@/layouts/AppLayout.vue";
interface Properties {
tour: Tour
}
const { tour } = usePage().props as unknown as Properties
defineOptions({
layout: AppLayout
})
</script>
<template>
<section style="padding-top:20dvh;height: 100dvh">
{{tour.short_description}}
</section>
</template>
<style scoped>
</style>