33 lines
784 B
Vue
33 lines
784 B
Vue
<script setup>
|
|
import { Head } from '@inertiajs/vue3'
|
|
import AppLayout from '@/Layouts/AppLayout.vue'
|
|
import AppButton from '@/Components/AppButton.vue'
|
|
|
|
defineOptions({ layout: AppLayout })
|
|
|
|
const props = defineProps({
|
|
session: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<Head title="Session Result" />
|
|
|
|
<div class="max-w-4xl mx-auto px-4 py-8">
|
|
<h1 class="text-3xl font-bold text-white mb-6">Session Result</h1>
|
|
|
|
<div class="bg-surface/50 rounded-lg p-6 mb-8">
|
|
<p class="text-gray-400 text-center">Your result will appear here</p>
|
|
</div>
|
|
|
|
<div class="flex justify-center">
|
|
<AppButton size="lg" href="/">
|
|
Again
|
|
</AppButton>
|
|
</div>
|
|
</div>
|
|
</template>
|