初始化

This commit is contained in:
2026-02-22 18:56:10 +08:00
commit 26677972a6
3112 changed files with 255972 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<template>
<div class="auth-title mb-9 sm:mx-auto sm:w-full sm:max-w-md">
<h2
class="text-foreground mb-2.5 text-3xl font-semibold leading-[1.22] tracking-[-0.015em] lg:text-[2.15rem]"
>
<slot></slot>
</h2>
<p class="text-muted-foreground text-[0.95rem] leading-7 lg:text-base">
<slot name="desc"></slot>
</p>
</div>
</template>
<style scoped>
.auth-title {
letter-spacing: 0;
}
</style>