Files
cozsweet-frontend-nextjs/src/app/chat/components/ai-disclosure-banner.tsx
T
admin 6e51cb7d16 Refactor: Remove original Dart references from comments across multiple files
- Updated comments in various components, schemas, and repositories to remove references to original Dart files.
- Ensured consistency in documentation while maintaining the context of the code.
2026-06-29 11:31:21 +08:00

19 lines
425 B
TypeScript

"use client";
/**
* AiDisclosureBanner AI 声明横幅
*
*
*
* 视觉:居中灰色小字 "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>
);
}