Update Inspirations view, components and json template

This commit is contained in:
Timothée Goguely 2024-09-09 20:03:24 +02:00
parent 4cf00533d0
commit d79f195913
3 changed files with 239 additions and 8 deletions

View file

@ -1,16 +1,28 @@
<template>
<h1>{{ data.content.title }}</h1>
<!-- ... -->
<h1 class="sr-only">{{ data.content.title }}</h1>
<div class="with-sidebar">
<!-- Changer le Menu actif
class="active" sur le <li>
aria-current="page" sur le <a>
-->
<Menu />
<main>
<Inspirations />
</main>
</div>
</template>
<style scoped>
</style>
<script setup>
import Menu from "../components/Menu.vue";
import Inspirations from "../components/Inspirations.vue";
const { data } = defineProps({
data: Object,
});
// ....
</script>
<style scoped>
</style>