| Server IP : 10.200.247.200 / Your IP : 216.73.217.19 Web Server : Apache System : Linux synergy-usa-sites 6.8.0-138-generic #138-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 31 22:41:49 UTC 2026 x86_64 User : jeremy ( 1001) PHP Version : 8.4.25 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/react_apps_dev/lovable-project-08290a92/src/components/ |
Upload File : |
import { Link } from "react-router-dom";
import { DollarSign, Heart, Users, Lock, FileText, Calendar, RotateCcw, HelpCircle, Settings, LogOut } from "lucide-react";
export const HeaderNavigation = () => {
return (
<header className="fixed top-0 left-0 right-0 z-50 bg-white border-b border-gray-200 shadow-sm">
<div className="flex items-center justify-between px-4 py-3 min-w-[640px]">
{/* Logo Section */}
<div className="flex items-center">
<Link to="/" className="flex items-center">
<div className="flex items-center">
<div className="w-8 h-8 bg-red-600 clip-path-star mr-2 relative">
<svg viewBox="0 0 24 24" className="w-full h-full text-white fill-current">
<path d="M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z"/>
</svg>
</div>
<div className="flex flex-col">
<div className="flex items-center">
<span className="text-2xl font-bold text-blue-800 mr-1">USA</span>
<span className="text-lg text-gray-600">FUNDING</span>
</div>
<span className="text-sm text-red-600 font-medium -mt-1">Applications</span>
</div>
</div>
</Link>
</div>
{/* Right Navigation */}
<div className="flex flex-col items-end">
{/* Help Phone Number - Top Row */}
<div className="text-xs text-gray-600 mb-1">
Need Help? Call Us{" "}
<a href="tel:8883641167" className="font-medium text-blue-600 hover:text-blue-700">
(888) 364-1167
</a>
</div>
{/* Navigation Icons - Two Rows */}
<div className="flex flex-col space-y-1">
{/* First Row */}
<div className="flex items-center space-x-3">
<Link
to="/givesback"
className="flex flex-col items-center p-1 hover:bg-gray-100 rounded transition-colors"
>
<div className="flex space-x-0.5">
<DollarSign className="h-4 w-4 text-green-600" />
<DollarSign className="h-4 w-4 text-green-600" />
<DollarSign className="h-4 w-4 text-green-600" />
</div>
<span className="text-xs text-gray-700">Givesback</span>
</Link>
<Link
to="/favorites"
className="flex flex-col items-center p-1 hover:bg-gray-100 rounded transition-colors"
>
<Heart className="h-4 w-4 text-red-500" />
<span className="text-xs text-gray-700">Favorites</span>
</Link>
<Link
to="/seminars"
className="flex flex-col items-center p-1 hover:bg-gray-100 rounded transition-colors"
>
<Users className="h-4 w-4 text-gray-700" />
<span className="text-xs text-gray-700">Seminars</span>
</Link>
<Link
to="/ai-vault"
className="flex flex-col items-center p-1 hover:bg-gray-100 rounded transition-colors"
>
<Lock className="h-4 w-4 text-blue-800" />
<span className="text-[10px] text-gray-700">AI Answer Vault</span>
</Link>
<Link
to="/organizer"
className="flex flex-col items-center p-1 hover:bg-gray-100 rounded transition-colors"
>
<FileText className="h-4 w-4 text-blue-600" />
<span className="text-xs text-gray-700">Organizer</span>
</Link>
<Link
to="/calendar"
className="flex flex-col items-center p-1 hover:bg-gray-100 rounded transition-colors"
>
<Calendar className="h-4 w-4 text-orange-600" />
<span className="text-xs text-gray-700">Deadlines</span>
</Link>
</div>
{/* Second Row */}
<div className="flex items-center space-x-3">
<button
onClick={() => {/* Retake tour functionality */}}
className="flex flex-col items-center p-1 hover:bg-gray-100 rounded transition-colors text-gray-500"
>
<RotateCcw className="h-4 w-4" />
<span className="text-xs">Retake Tour</span>
</button>
<button
onClick={() => {/* Support functionality */}}
className="flex flex-col items-center p-1 hover:bg-gray-100 rounded transition-colors text-gray-500"
>
<HelpCircle className="h-4 w-4" />
<span className="text-xs">Support</span>
</button>
<Link
to="/settings"
className="flex flex-col items-center p-1 hover:bg-gray-100 rounded transition-colors text-gray-500"
>
<Settings className="h-4 w-4" />
<span className="text-xs">Settings</span>
</Link>
<Link
to="/logout"
className="flex flex-col items-center p-1 hover:bg-gray-100 rounded transition-colors text-gray-500"
>
<LogOut className="h-4 w-4" />
<span className="text-xs">Logout</span>
</Link>
</div>
</div>
</div>
</div>
</header>
);
};