mirror of
https://github.com/Floriansylvain/RenewCMS.git
synced 2026-08-19 11:43:22 +02:00
20 lines
284 B
Vue
20 lines
284 B
Vue
<script setup lang="ts">
|
|
</script>
|
|
|
|
<template>
|
|
<main>
|
|
<h1>Bienvenue.</h1>
|
|
<h2>Vous êtes sur la page d'accueil de GohCMS.</h2>
|
|
</main>
|
|
</template>
|
|
|
|
<style scoped>
|
|
main {
|
|
padding: 64px;
|
|
color: var(--neutral-light);
|
|
}
|
|
|
|
main h1 {
|
|
margin: 0;
|
|
}
|
|
</style> |