designtopack/src/views/Home.vue

19 lines
340 B
Vue
Raw Normal View History

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">
<Menu />
<main>
2024-09-04 11:28:12 +02:00
<Projects />
</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>