2024-09-26 19:14:20 +02:00
|
|
|
<template>
|
|
|
|
|
<header class="flex | bg-white | rounded-2xl | p-8 mb-16">
|
|
|
|
|
<h1 class="font-serif | px-8">{{ title }}</h1>
|
2024-11-18 15:27:41 +01:00
|
|
|
<button class="btn | ml-auto" disabled>Demander un RDV</button>
|
2024-09-26 19:14:20 +02:00
|
|
|
</header>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup>
|
|
|
|
|
const { title } = defineProps({
|
|
|
|
|
title: String,
|
|
|
|
|
});
|
|
|
|
|
</script>
|