From f60ce3c356a73127b05717cc0f3fefb2ea0fb1de Mon Sep 17 00:00:00 2001 From: Floke Date: Sat, 20 Dec 2025 20:58:25 +0000 Subject: [PATCH] =?UTF-8?q?general-market-intelligence/components/Header.t?= =?UTF-8?q?sx=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/Header.tsx | 39 +++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 general-market-intelligence/components/Header.tsx diff --git a/general-market-intelligence/components/Header.tsx b/general-market-intelligence/components/Header.tsx new file mode 100644 index 00000000..1cdf1d99 --- /dev/null +++ b/general-market-intelligence/components/Header.tsx @@ -0,0 +1,39 @@ + +import React from 'react'; +import { Radar, ChevronLeft } from 'lucide-react'; + +interface HeaderProps { + onBack?: () => void; + showBack?: boolean; +} + +export const Header: React.FC = ({ onBack, showBack }) => { + return ( +
+
+
+ {showBack && onBack && ( + + )} +
+
+ +
+
+

Prospects Intel

+
+
+
+
+ B2B Market Intelligence Agent +
+
+
+ ); +};