18 lines
287 B
Vue
18 lines
287 B
Vue
<script setup>
|
|
|
|
import UnderConstruction from "@/components/sections/UnderConstruction.vue"
|
|
</script>
|
|
|
|
<template>
|
|
|
|
<div class="flex flex-col">
|
|
|
|
<section class="">
|
|
<div class="container mx-auto">
|
|
<UnderConstruction />
|
|
</div>
|
|
</section>
|
|
</div>
|
|
|
|
</template>
|