2024-07-11 12:42:29 +02:00
|
|
|
<template>
|
2024-09-02 14:31:50 +02:00
|
|
|
<h1 class="sr-only">{{ data.content.title }}</h1>
|
2024-09-04 08:25:43 +02:00
|
|
|
<div class="with-sidebar">
|
2024-09-02 21:20:48 +02:00
|
|
|
<Menu />
|
|
|
|
|
<main>
|
2024-09-04 11:28:12 +02:00
|
|
|
<Projects />
|
2024-09-02 21:20:48 +02:00
|
|
|
</main>
|
|
|
|
|
</div>
|
2024-07-11 12:42:29 +02:00
|
|
|
</template>
|
2024-09-02 14:33:21 +02:00
|
|
|
|
2024-07-11 12:42:29 +02:00
|
|
|
<script setup>
|
2024-09-02 14:31:50 +02:00
|
|
|
import Menu from "../components/Menu.vue";
|
2024-09-04 11:28:12 +02:00
|
|
|
import Projects from "../components/Projects.vue";
|
|
|
|
|
|
2024-07-11 12:42:29 +02:00
|
|
|
const { data } = defineProps({
|
|
|
|
|
data: Object,
|
|
|
|
|
});
|
|
|
|
|
</script>
|