designtopack/src/components/project/Header.vue

13 lines
285 B
Vue
Raw Normal View History

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>
<button class="btn | ml-auto">Demander un RDV</button>
</header>
</template>
<script setup>
const { title } = defineProps({
title: String,
});
</script>