import { AlertCircle } from "lucide-react"; interface SecurityNoticeProps { title?: string; message?: string; } export function SecurityNotice({ title = "Security Notice", message = "API keys are stored in your browser's local storage. Never share your API keys or commit them to version control.", }: SecurityNoticeProps) { return (

{title}

{message}

); }