add client brief page
This commit is contained in:
parent
83cf6beea7
commit
769639b241
12 changed files with 97 additions and 53 deletions
12
src/components/project/Header.vue
Normal file
12
src/components/project/Header.vue
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
<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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue