2024-09-04 11:41:37 +02:00
|
|
|
<template>
|
2024-09-09 20:03:24 +02:00
|
|
|
<h1 class="sr-only">{{ data.content.title }}</h1>
|
|
|
|
|
<div class="with-sidebar">
|
2024-09-10 08:49:09 +02:00
|
|
|
<Menu />
|
2024-09-09 20:03:24 +02:00
|
|
|
<main>
|
|
|
|
|
<Inspirations />
|
|
|
|
|
</main>
|
|
|
|
|
</div>
|
2024-09-04 11:41:37 +02:00
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup>
|
2024-09-09 20:03:24 +02:00
|
|
|
import Menu from "../components/Menu.vue";
|
|
|
|
|
import Inspirations from "../components/Inspirations.vue";
|
|
|
|
|
|
2024-09-04 11:41:37 +02:00
|
|
|
const { data } = defineProps({
|
|
|
|
|
data: Object,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// ....
|
|
|
|
|
</script>
|
2024-09-09 20:03:24 +02:00
|
|
|
|
2024-09-10 08:49:09 +02:00
|
|
|
<style scoped></style>
|