- Add DailyDigestCard and ReminderToast memory components - Add temple and war-room page routes - Add memory API module with TypeScript definitions - Add chat composables: useClientTime, useDailyDigest, useSidebarPlan - Simplify chat/logs/settings pages (remove unused code) - Add settingsPage.css
56 lines
1015 B
Vue
56 lines
1015 B
Vue
<script setup lang="ts">
|
||
// 智慧神殿 - Temple of Wisdom
|
||
</script>
|
||
|
||
<template>
|
||
<div class="temple-page">
|
||
<div class="page-header">
|
||
<h1>⛩️ 智慧神殿</h1>
|
||
<p class="subtitle">深邃智慧,永恒传承</p>
|
||
</div>
|
||
<div class="page-content">
|
||
<div class="placeholder-content">
|
||
<div class="temple-icon">🏛️</div>
|
||
<p>智慧神殿 - 敬请期待</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</template>
|
||
|
||
<style scoped>
|
||
.temple-page {
|
||
padding: 24px;
|
||
min-height: 100vh;
|
||
background: var(--bg-primary);
|
||
}
|
||
|
||
.page-header {
|
||
text-align: center;
|
||
margin-bottom: 32px;
|
||
}
|
||
|
||
.page-header h1 {
|
||
font-size: 28px;
|
||
color: var(--text-primary);
|
||
margin-bottom: 8px;
|
||
}
|
||
|
||
.subtitle {
|
||
color: var(--text-secondary);
|
||
font-size: 14px;
|
||
}
|
||
|
||
.placeholder-content {
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
justify-content: center;
|
||
min-height: 400px;
|
||
color: var(--text-secondary);
|
||
}
|
||
|
||
.temple-icon {
|
||
font-size: 64px;
|
||
margin-bottom: 16px;
|
||
}
|
||
</style> |