czh-20260520-增加初版首页

This commit is contained in:
zhihao
2026-05-20 10:57:57 +08:00
parent e051205167
commit 3a7455b39c
6 changed files with 810 additions and 0 deletions
@@ -0,0 +1,22 @@
<!-- eslint-disable vue/multi-word-component-names -->
<template>
<div class="process-portal">
<WelcomeBanner />
<StatCards />
<MyWork />
</div>
</template>
<script lang="ts" setup>
import WelcomeBanner from './components/WelcomeBanner.vue';
import StatCards from './components/StatCards.vue';
import MyWork from './components/MyWork.vue';
</script>
<style lang="less" scoped>
.process-portal {
padding: 12px 16px;
max-width: 1600px;
margin: 0 auto;
}
</style>