/** * Intent Research Test Page * * A test page to demonstrate the new intent-driven research system. */ import React from 'react'; import { Box, Container, Typography, Paper, Divider } from '@mui/material'; import { IntentResearchWizard } from '../components/Research/IntentResearchWizard'; import { IntentDrivenResearchResponse } from '../components/Research/types/intent.types'; const IntentResearchTest: React.FC = () => { const handleComplete = (result: IntentDrivenResearchResponse) => { console.log('[IntentResearchTest] Research complete:', result); }; return ( {/* Header */} 🧠 Intent-Driven Research AI understands what you need, not just what you type Traditional research gives you links to sift through. Intent-driven research gives you exactly what you need: statistics with citations, expert quotes, case studies, trends, and more — all organized by what you're trying to accomplish. {/* Features */} How it works: {[ { icon: '🎯', title: 'Intent Analysis', desc: 'AI infers what you really want' }, { icon: '🔍', title: 'Targeted Queries', desc: 'Multiple queries for each need' }, { icon: '📊', title: 'Smart Extraction', desc: 'Pulls stats, quotes, case studies' }, { icon: '✨', title: 'Organized Results', desc: 'Deliverables, not just links' }, ].map((item, idx) => ( {item.icon} {item.title} {item.desc} ))} {/* Intent Research Wizard */} ); }; export default IntentResearchTest;