14 lines
220 B
Vue
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>
|