Spaces:
Sleeping
Sleeping
Commit ·
028bbfc
1
Parent(s): 428e375
Updated App.tsx to adjust logo
Browse files- src/App.tsx +5 -8
- src/assets/InsuCompass_Logo.png +0 -0
- src/assets/robot-chat.jpg +0 -0
src/App.tsx
CHANGED
|
@@ -1,5 +1,6 @@
|
|
| 1 |
import React, { useState, useEffect, useRef } from 'react';
|
| 2 |
import { Send, MapPin, User, Users, DollarSign, Briefcase, CheckCircle, Bot } from 'lucide-react';
|
|
|
|
| 3 |
|
| 4 |
// Types
|
| 5 |
interface UserProfile {
|
|
@@ -186,11 +187,9 @@ const InsuCompassApp: React.FC = () => {
|
|
| 186 |
<div className="min-h-screen bg-gradient-to-br from-blue-50 via-white to-indigo-50">
|
| 187 |
{/* Header */}
|
| 188 |
<div className="bg-white shadow-sm border-b">
|
| 189 |
-
<div className="max-w-
|
| 190 |
<div className="flex items-center space-x-3">
|
| 191 |
-
<
|
| 192 |
-
<span className="text-white font-bold text-xl">🧭</span>
|
| 193 |
-
</div>
|
| 194 |
<div>
|
| 195 |
<h1 className="text-2xl font-bold text-gray-900">InsuCompass</h1>
|
| 196 |
<p className="text-sm text-gray-600">Your AI guide to U.S. Health Insurance</p>
|
|
@@ -392,11 +391,9 @@ const InsuCompassApp: React.FC = () => {
|
|
| 392 |
<div className="min-h-screen bg-gradient-to-br from-blue-50 via-white to-indigo-50 flex flex-col">
|
| 393 |
{/* Header */}
|
| 394 |
<div className="bg-white shadow-sm border-b">
|
| 395 |
-
<div className="max-w-
|
| 396 |
<div className="flex items-center space-x-3">
|
| 397 |
-
<
|
| 398 |
-
<span className="text-white font-bold text-xl">🧭</span>
|
| 399 |
-
</div>
|
| 400 |
<div>
|
| 401 |
<h1 className="text-2xl font-bold text-gray-900">InsuCompass</h1>
|
| 402 |
<p className="text-sm text-gray-600">Chat with your AI insurance advisor</p>
|
|
|
|
| 1 |
import React, { useState, useEffect, useRef } from 'react';
|
| 2 |
import { Send, MapPin, User, Users, DollarSign, Briefcase, CheckCircle, Bot } from 'lucide-react';
|
| 3 |
+
import InsuCompassLogo from './assets/InsuCompass_Logo.png';
|
| 4 |
|
| 5 |
// Types
|
| 6 |
interface UserProfile {
|
|
|
|
| 187 |
<div className="min-h-screen bg-gradient-to-br from-blue-50 via-white to-indigo-50">
|
| 188 |
{/* Header */}
|
| 189 |
<div className="bg-white shadow-sm border-b">
|
| 190 |
+
<div className="max-w-10xl mx-auto px-6 py-4">
|
| 191 |
<div className="flex items-center space-x-3">
|
| 192 |
+
<img src={InsuCompassLogo} alt="InsuCompass Logo" className="h-12 w-auto" />
|
|
|
|
|
|
|
| 193 |
<div>
|
| 194 |
<h1 className="text-2xl font-bold text-gray-900">InsuCompass</h1>
|
| 195 |
<p className="text-sm text-gray-600">Your AI guide to U.S. Health Insurance</p>
|
|
|
|
| 391 |
<div className="min-h-screen bg-gradient-to-br from-blue-50 via-white to-indigo-50 flex flex-col">
|
| 392 |
{/* Header */}
|
| 393 |
<div className="bg-white shadow-sm border-b">
|
| 394 |
+
<div className="max-w-10xl mx-auto px-6 py-4">
|
| 395 |
<div className="flex items-center space-x-3">
|
| 396 |
+
<img src={InsuCompassLogo} alt="InsuCompass Logo" className="h-12 w-auto" />
|
|
|
|
|
|
|
| 397 |
<div>
|
| 398 |
<h1 className="text-2xl font-bold text-gray-900">InsuCompass</h1>
|
| 399 |
<p className="text-sm text-gray-600">Chat with your AI insurance advisor</p>
|
src/assets/InsuCompass_Logo.png
ADDED
|
src/assets/robot-chat.jpg
ADDED
|