5d00e71275
頂層 D22 決策(leo 2026-07-03 拍板):推什麼由開發環境歸屬決定, Gitea private=除機敏值/build 產物/.github 外全 push。 解 T1.5 卡點:雲端工人 clone 拿得到 credential-store-migration.md,可就地改寫 SDD。 機敏掃描兩輪通過(新增 189 檔約 2.1MB,node_modules/dist/wasm 照舊排除)。 Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
24 lines
823 B
TypeScript
24 lines
823 B
TypeScript
'use client';
|
||
|
||
export const runtime = 'edge';
|
||
|
||
// Mira 對話單頁(手機用;桌機改用 layout.tsx 的右側 dock)
|
||
// SDD: polaris/mira/.agents/specs/mira-app/design.md §3.6.5
|
||
|
||
import Link from 'next/link';
|
||
import MiraChat from '../_shared/MiraChat';
|
||
import '../mira.css';
|
||
|
||
export default function MiraChatPage() {
|
||
return (
|
||
<main className="mira-page mira-chat-page">
|
||
<header style={{ padding: '16px 0 4px' }}>
|
||
<Link href="/mira/feed" style={{ color: '#888', fontSize: 14, textDecoration: 'none' }}>← 河道</Link>
|
||
<h1 style={{ fontSize: 20, fontWeight: 700, color: '#fff', margin: '6px 0 0' }}>💬 跟 Mira 對話</h1>
|
||
<p style={{ color: '#888', fontSize: 12, marginTop: 2 }}>會先翻你的 wiki / 河道再回答</p>
|
||
</header>
|
||
<MiraChat />
|
||
</main>
|
||
);
|
||
}
|