import React, { useState, useEffect, useRef } from 'react'; import { BarChart, Bar, XAxis, YAxis, Tooltip, ResponsiveContainer } from 'recharts'; import { initLocalEngine, routeInference } from '../utils/inferenceRouter'; import HCaptcha from '@hcaptcha/react-hcaptcha'; import { supabase, useAuth, GATEWAY_URL, LEMON_CHECKOUT_URL } from '../context'; export default function PhishVisionSection() { const curl = `curl -X POST https://opticparse-1opticparse-node-sg.onrender.com/api/phish-detect \\ -H "Content-Type: application/json" \\ -d '{"url": "https://suspicious-site.com", "dry_run": false}'`; return (

PhishVision — Visual Phishing Detection

POST https://opticparse-1opticparse-node-sg.onrender.com/api/phish-detect

{curl}
View Landing Page
) }