designtopack/src/views/Home.vue

9 lines
193 B
Vue

<template>
<main class="flex flex-col" style="--row-gap: var(--space-32)">
<Projects />
</main>
</template>
<script setup>
import Projects from "../components/Projects.vue";
</script>