This commit is contained in:
fengchuanhn@gmail.com
2026-05-15 17:51:47 +08:00
parent bac4ced1fe
commit 584d4c47a1
23 changed files with 1952 additions and 304 deletions

View File

@@ -0,0 +1,24 @@
<script setup>
defineProps({
title: { type: String, required: true },
subtitle: { type: String, default: "" },
});
</script>
<template>
<div class="auth-bg flex h-full items-center justify-center overflow-auto p-6">
<div class="relative z-10 w-full max-w-md">
<div class="mb-8 text-center">
<h1 class="gradient-text text-3xl font-bold tracking-tight">aiclient</h1>
<p v-if="subtitle" class="mt-2 text-sm text-text-muted">{{ subtitle }}</p>
</div>
<div class="glass-card rounded-xl p-6 md:p-8">
<h2 class="mb-6 font-mono text-lg font-semibold text-slate-100">
{{ title }}
</h2>
<slot />
</div>
</div>
</div>
</template>