'use client'; import React from 'react'; interface StateCardProps { question?: string; onSubmit?: (question: string) => void; } export function UnsupportedRequest({ question, onSubmit }: StateCardProps) { const sampleQuestions = [ 'What was the Liquidity Coverage Ratio (LCR) in Q1 2026?', 'What are the key drivers for net profit growth?', 'Show the Net Interest Margin (NIM) performance.', 'How did business segment performance vary across RBWM, CIB, GM&T and DenizBank?', 'What are the sustainable finance and ESG rating highlights?', 'What drove loan growth and deposit growth?', 'What is the capital adequacy position in Q1 2026?', ]; return (
{/* Main content area */}
🚫
Out of Scope

Query Outside Scope

IRIS is designed exclusively for Investor Relations and Financial Document Intelligence. The requested topic is outside our financial domain scope.

{question && (
“{question}”
)}

Supported Subject Areas

📊
Financial KPIs
NIM, LCR, Cost of Risk, CET1, ROE, ROA, Net Profit
📅
Reporting Periods
Earnings releases, investor presentations, annual results, YoY & QoQ comparisons
📂
Official IR Documents
Investor presentations, financial statements, disclosures
🏢
Business Segments
RBWM, CIB, GM&T, DenizBank
{/* Sidebar area */}

Try These Questions

Click any of these sample queries to explore valid Investor Relations data:

{sampleQuestions.map((q) => ( ))}
); } export function InsufficientEvidence({ question, onSubmit }: StateCardProps) { const sampleQuestions = [ 'What was Emirates NBD\'s net interest margin in Q1 2026?', 'What is the cost to income ratio details?', 'What was the retail segment\'s performance?', 'What was the total profit in Q1 2026?', 'What was the total income in Q1 2026?', 'How did total income compare with the prior period?', 'What were the main drivers of profitability?', ]; return (
{/* Main content area */}
🔍
Refinement Needed

Insufficient Evidence

We scanned the active investor presentations and reports, but could not retrieve enough verified source evidence to generate a reliable answer.

{question && (
“{question}”
)}

How to refine your query

🎯
Be Specific
Include specific metrics like “LCR”, “Net Profit”, or “Loan Growth”.
🗓️
Specify Timeframe
Target a reporting period (e.g. “Q1 2026”, “FY 2025”).
📁
Check Filters
Ensure the relevant documents are ticked in the left panel.
🔤
Standard Terms
Use standard financial terms instead of conversational phrases.
{/* Sidebar area */}

Suggested Questions

Try adjusting your question or check these common financial inquiries:

{sampleQuestions.map((q) => ( ))}
); }