/* * ============================================================================= * VibeQuant (vquant) — AI-Powered Financial Intelligence Platform * ----------------------------------------------------------------------------- * File: client/src/components/chat/result-card.tsx * * Author: Simon-Pierre Boucher * Contact: contact@spboucher.ai * Website: https://www.spboucher.ai * Demo: https://www.vquant.ai * License: MIT (see LICENSE) * * Copyright © 2026 Simon-Pierre Boucher. All rights reserved. * ============================================================================= */ import { ExternalLink } from "lucide-react"; import type { SearchResult } from "@shared/types"; interface ResultCardProps { result: SearchResult; index: number; } export function ResultCard({ result, index }: ResultCardProps) { return (
{result.favicon ? ( { e.currentTarget.style.display = 'none'; }} /> ) : (
{new URL(result.url).hostname[0].toUpperCase()}
)}

{result.title}

{new URL(result.url).hostname}

{result.snippet}

); }