Files
estel_docs/app/components/IndexHero.vue
estel 6823e35514
Some checks failed
CI / lint (push) Successful in 11m17s
CI / typecheck (push) Failing after 9m9s
CI / build (ubuntu-latest) (push) Failing after 21s
修改了样式
2025-07-31 23:31:02 +08:00

23 lines
735 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<script setup lang="ts">
// 无需额外的脚本逻辑
</script>
<template>
<div class="w-full top-0 left-0 bg-gray-50 dark:bg-gray-900">
<!-- 欢迎卡片 -->
<div
class="bg-slate-200 dark:bg-slate-600 rounded-lg border border-gray-200 dark:border-gray-700 p-2 sm:p-4 shadow-sm"
>
<h1 class="text-xl font-bold text-gray-900 dark:text-white mb-2">
Hi 👋, 欢迎使用简单文档系统.
</h1>
<!-- 编号列表 -->
<div class="mt-2 text-base text-gray-700 dark:text-gray-300">
· Nuxt 4 全栈框架构建<br>
· 基于 Markdown 语法的文档系统<br>
· 在文档内使用自定义语法的 Vue 组件!
</div>
</div>
</div>
</template>