Create a single-page SPA (Single Page Application) using React and Tailwind CSS. The application should be named 'AI Trust Validator'. Its core purpose is to analyze and verify the claims made by AI companies and models, addressing the user problem of distrust and misinformation in the AI space, as highlighted by discussions like Dario Amodei's comments on OpenAI.
**Core Functionality:**
1. **Claim Input:** A prominent input field where users can paste or type a specific claim, news headline, or a URL pointing to an AI-related announcement or article.
2. **Analysis Engine (Simulated/Placeholder):** Upon submission, the app should simulate an analysis process. For MVP, this can be a loading spinner and a placeholder message. In a more advanced version, this would involve backend calls to NLP models to check for factual inconsistencies, logical fallacies, and potential exaggerations based on a curated database of AI research and company statements.
3. **Trust Score Display:** A clear and visually distinct trust score (e.g., a percentage or a 1-5 star rating) for the analyzed claim or entity. This score should be accompanied by a brief explanation of the reasoning behind it.
4. **Supporting Evidence/Context:** Display snippets of related information, links to verified sources, or counter-arguments that support the trust score. This section should be dynamically generated or pre-populated for demonstration.
5. **User Feedback/Discussion (Optional for MVP, but good to visualize):** A simple comment section where users can share their thoughts on the analysis. This will be a mock component initially.
**Technical Requirements:**
* **Framework:** React
* **Styling:** Tailwind CSS for a clean, modern, and responsive UI.
* **State Management:** Basic React hooks (useState, useEffect).
* **Routing:** Not required for a single-page app, but structure the components logically.
* **UI Components:** Use common UI elements like input fields, buttons, cards, spinners, modals (for detailed explanations if needed).
**Page Structure (Conceptual):**
* **Header:** App title ('AI Trust Validator'), perhaps a brief tagline.
* **Hero Section:** A clear call to action: 'Verify AI Claims Instantly'. Input field and submit button.
* **Results Section (Initially Hidden/Loading):** Displays the analysis results, trust score, and evidence once a claim is submitted and processed.
* **Footer:** Basic information, links to about/privacy policy (mock links).
**Design Considerations:**
* **Clarity:** The interface should be intuitive and easy to understand.
* **Trustworthiness:** The design should evoke a sense of reliability and objectivity.
* **Responsiveness:** The layout must adapt seamlessly to different screen sizes (desktop, tablet, mobile).
**Prompt for Claude:**
'Act as an expert frontend developer specializing in React and Tailwind CSS. Generate the complete code for a single-page SPA called 'AI Trust Validator'. The application should allow users to input AI-related claims and receive a simulated trust score and supporting evidence. Focus on creating a clean, responsive, and user-friendly interface. Structure the code into logical components (e.g., Header, InputForm, ResultsDisplay). Include placeholder logic for the analysis engine and ensure all styling is done using Tailwind CSS.'