Undangan/proyek-frontend/app/components/templates/Ultah/ThankYou.vue
2025-10-07 10:36:44 +07:00

21 lines
627 B
Vue

<template>
<section class="w-full max-w-3xl mx-auto text-center">
<h1 class="text-orange-700 text-3xl md:text-4xl font-bold mb-6">
Terima Kasih
</h1>
<p class="text-orange-800 text-lg md:text-xl mb-6">
Kehadiran dan doa restu Bapak/Ibu/Saudara/i merupakan kebahagiaan besar bagi kami.
</p>
<div class="bg-yellow-300/60 rounded-3xl p-6 shadow-xl">
<p class="text-orange-700 font-bold text-xl">Raffi Ahmad & Nagita Slavina</p>
<p class="text-orange-800">Orang Tua {{ childName }}</p>
</div>
</section>
</template>
<script setup>
defineProps({
childName: String
})
</script>