import React from 'react'; const COPY = { one_left: { title: 'One chat remaining today', body: ( <> You have one chat left for today. Contact us at{' '} info@neon.ai if you would like to do more with CCAI. > ), }, exhausted: { title: 'Daily chat limit reached', body: ( <> You have used all of your chats for today. Contact us at{' '} info@neon.ai if you would like to do more with CCAI. > ), }, }; /** * Modal notice for anonymous / rate-limited users at 1 chat left or * when they try to start after the daily cap is exhausted. */ export default function RateLimitNotice({ kind, onClose }) { if (!kind || !COPY[kind]) return null; const { title, body } = COPY[kind]; return (