/** * Dashboard Page Component * * Main dashboard for ThinkRank admin interface * * @package ThinkRank * @since 1.0.0 */ import { useState, useEffect } from '@wordpress/element'; import { __ } from '@wordpress/i18n'; import { Card, CardBody, CardHeader, Spinner } from '@wordpress/components'; import apiFetch from '@wordpress/api-fetch'; // AI Provider Icons - Reusing from Settings page for consistency const OpenAIIcon = () => ( ); const ClaudeIcon = () => ( ); /** * Dashboard Component */ const Dashboard = () => { return (
{__('Your AI-powered content brief generator status and statistics.', 'thinkrank')}