Files
cozsweet-frontend-nextjs/src/app/chat/components/ai-disclosure-banner.tsx
T

19 lines
495 B
TypeScript
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.
"use client";
/**
* AiDisclosureBanner AI 声明横幅
*
* 原始 Dart: lib/ui/chat/widgets/ai_disclosure_banner.dart17 行)
*
* 视觉:居中灰色小字 "All content is generated by AI"
* 用途:位于聊天区顶部,声明 AI 生成内容(合规 / 法律要求)
*/
import styles from "./chat-area.module.css";
export function AiDisclosureBanner() {
return (
<div className={styles.aiDisclosure} role="note">
All content is generated by AI
</div>
);
}