Files
cloudron-box/dashboard/src/views/AppearanceView.vue
T
2025-10-05 10:30:34 +02:00

14 lines
220 B
Vue

<script setup>
import Branding from '../components/Branding.vue';
import Applinks from '../components/Applinks.vue';
</script>
<template>
<div class="content">
<Branding />
<Applinks />
</div>
</template>