19 lines
357 B
Vue
19 lines
357 B
Vue
<script setup lang="ts">
|
|
|
|
import AuthorDescription from '~/pages/index/about/compoents/AuthorDescription.vue';
|
|
import SiteDescription from '~/pages/index/about/compoents/SiteDescription.vue';
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<div class="mt-6 mb-6 w-full">
|
|
<SiteDescription />
|
|
<AuthorDescription />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|