You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and dots ('.'), can be up to 35 characters long. Letters must be lowercase.
 
 
 
 

16 lines
447 B

<script setup>
import { Head, Link } from '@inertiajs/vue3';
import Layout from '@/Layouts/Layout.vue';
import MarkdownEditor from '@/Components/MarkdownEditor.vue';
</script>
<template>
<Head title="Home"/>
<Layout>
<template #content>
<div class="w-full h-screen flex items-center justify-center px-[13.5%] py-[10%]">
<MarkdownEditor/>
</div>
</template>
</Layout>
</template>