Added About Page
This commit is contained in:
@@ -28,6 +28,7 @@ defineOptions({
|
||||
or a punchy day tour, we’ll keep it flexible, intimate, and full of good stories.
|
||||
</p>
|
||||
</Hero>
|
||||
|
||||
<div class="about-decorations">
|
||||
<div class="about-decoration about-decoration-1"></div>
|
||||
<div class="about-decoration about-decoration-2"></div>
|
||||
@@ -36,6 +37,7 @@ defineOptions({
|
||||
|
||||
<!-- Why Choose Dr Edgy -->
|
||||
<SectionContainer class="section-block">
|
||||
<br/><br/>
|
||||
<div v-show-on-intersect="'fade-up'" class="about-content">
|
||||
<SectionTitle
|
||||
title="Why"
|
||||
|
||||
25
resources/js/pages/TourNavigator.vue
Normal file
25
resources/js/pages/TourNavigator.vue
Normal 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>
|
||||
Reference in New Issue
Block a user