import React, { useState } from 'react'; interface AgeVerificationModalProps { onConfirm: () => void; onCancel: () => void; } /** * Age Verification Modal * * Required when switching to Mature mode. * Professional, non-judgmental design. */ export const AgeVerificationModal: React.FC = ({ onConfirm, onCancel, }) => { const [confirmed, setConfirmed] = useState(false); return (
e.stopPropagation()}>
🔞

Enable Mature Mode?

Mature mode unlocks adult content generation capabilities:

  • NSFW image generation with anime models
  • Explicit content (nudity, porn) allowed
  • Fan service & ecchi content
  • Mature romance/erotica stories
Always blocked: CSAM, minors, non-consensual content
); };