| | 'use client';
|
| |
|
| | import { useSession } from "next-auth/react";
|
| | import { useState, useEffect } from "react";
|
| | import Image from "next/image";
|
| | import { SignOutButton } from "./auth-button";
|
| |
|
| | export default function Navigation() {
|
| | const { data: session } = useSession();
|
| | const [showProfileMenu, setShowProfileMenu] = useState(false);
|
| |
|
| |
|
| | useEffect(() => {
|
| | const handleClickOutside = (event: MouseEvent) => {
|
| | if (showProfileMenu) {
|
| | setShowProfileMenu(false);
|
| | }
|
| | };
|
| |
|
| | if (showProfileMenu) {
|
| | document.addEventListener('click', handleClickOutside);
|
| | }
|
| |
|
| | return () => document.removeEventListener('click', handleClickOutside);
|
| | }, [showProfileMenu]);
|
| |
|
| | return (
|
| | <header className="h-14 border-b border-black/10 dark:border-white/15 px-4 flex items-center justify-between bg-white dark:bg-black/20">
|
| | <div className="flex items-center gap-3">
|
| | <a href="/" className="flex items-center gap-2">
|
| | <h1 className="text-2xl font-semibold">Garbin AI</h1>
|
| | </a>
|
| | {/* Search Bar */}
|
| | <div className="hidden md:flex items-center relative">
|
| | {/* <div className="relative">
|
| | <input
|
| | type="text"
|
| | placeholder="Search models..."
|
| | className="w-64 pl-10 pr-4 py-2 text-sm border border-gray-300 dark:border-gray-600 rounded-lg bg-white dark:bg-gray-800 text-gray-900 dark:text-white placeholder-gray-500 dark:placeholder-gray-400 focus:outline-none focus:ring-2 focus:ring-gray-900 dark:focus:ring-white focus:border-transparent"
|
| | />
|
| | <svg className="absolute left-3 top-2.5 w-4 h-4 text-gray-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
| | <path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z" />
|
| | </svg>
|
| | </div> */}
|
| | </div>
|
| |
|
| | </div>
|
| | <nav className="hidden sm:flex items-center gap-8 text-sm text-gray-700 dark:text-gray-300">
|
| | <a className="flex items-center gap-2 hover:underline" href="#">
|
| | <svg className="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
| | <path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M9.75 17L9 20l-1 1h8l-1-1-.75-3M3 13h18M5 17h14a2 2 0 002-2V5a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z" />
|
| | </svg>
|
| | Models
|
| | </a>
|
| | <a className="flex items-center gap-2 hover:underline" href="#">
|
| | <svg className="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
| | <path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M4 7v10c0 2.21 3.582 4 8 4s8-1.79 8-4V7M4 7c0 2.21 3.582 4 8 4s8-1.79 8-4M4 7c0-2.21 3.582-4 8-4s8 1.79 8 4m0 5c0 2.21-3.582 4-8 4s-8-1.79-8-4" />
|
| | </svg>
|
| | Datasets
|
| | </a>
|
| | <a className="flex items-center gap-2 hover:underline" href="#">
|
| | <svg className="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
| | <path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M21 12a9 9 0 01-9 9m9-9a9 9 0 00-9-9m9 9H3m9 9a9 9 0 01-9-9m9 9c1.657 0 3-4.03 3-9s-1.343-9-3-9m0 18c-1.657 0-3-4.03-3-9s1.343-9 3-9m-9 9a9 9 0 019-9" />
|
| | </svg>
|
| | Spaces
|
| | </a>
|
| | <a className="flex items-center gap-2 hover:underline" href="#">
|
| | <svg className="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
| | <path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M17 20h5v-2a3 3 0 00-5.356-1.857M17 20H7m10 0v-2c0-.656-.126-1.283-.356-1.857M7 20H2v-2a3 3 0 015.356-1.857M7 20v-2c0-.656.126-1.283.356-1.857m0 0a5.002 5.002 0 019.288 0M15 7a3 3 0 11-6 0 3 3 0 016 0zm6 3a2 2 0 11-4 0 2 2 0 014 0zM7 10a2 2 0 11-4 0 2 2 0 014 0z" />
|
| | </svg>
|
| | Community
|
| | </a>
|
| | <a className="flex items-center gap-2 hover:underline" href="#">
|
| | <svg className="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
| | <path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z" />
|
| | </svg>
|
| | Docs
|
| | </a>
|
| |
|
| | <a className="flex items-center gap-2 hover:underline" href="#">
|
| | <svg className="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
| | <path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M7 7h.01M7 3h5c.512 0 1.024.195 1.414.586l7 7a2 2 0 010 2.828l-7 7a2 2 0 01-2.828 0l-7-7A1.994 1.994 0 013 12V7a4 4 0 014-4z" />
|
| | </svg>
|
| | Pricing
|
| | </a>
|
| | </nav>
|
| | {/* Mobile Search Button */}
|
| | <button className="md:hidden p-2 text-gray-600 dark:text-gray-300 hover:text-gray-900 dark:hover:text-white">
|
| | <svg className="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
| | <path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z" />
|
| | </svg>
|
| | </button>
|
| |
|
| | {/* User Profile Dropdown */}
|
| | {session && (
|
| | <div className="relative">
|
| | <button
|
| | onClick={() => setShowProfileMenu(!showProfileMenu)}
|
| | className="flex items-center gap-2 p-2 rounded-lg hover:bg-gray-100 dark:hover:bg-gray-800 transition-colors"
|
| | >
|
| | {session.user?.image && (
|
| | <Image
|
| | src={session.user.image}
|
| | alt="Profile"
|
| | width={32}
|
| | height={32}
|
| | className="rounded-full"
|
| | />
|
| | )}
|
| | <svg className="w-4 h-4 text-gray-500" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
| | <path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M19 9l-7 7-7-7" />
|
| | </svg>
|
| | </button>
|
| |
|
| | {showProfileMenu && (
|
| | <div className="absolute right-0 top-full mt-2 w-48 bg-white dark:bg-gray-900 border border-gray-200 dark:border-gray-700 rounded-lg shadow-lg z-50">
|
| | <div className="p-3 border-b border-gray-200 dark:border-gray-700">
|
| | <p className="font-medium text-sm">{session.user?.name}</p>
|
| | <p className="text-xs text-gray-500">{session.user?.email}</p>
|
| | </div>
|
| | <div className="py-1">
|
| | <a href="#" className="flex items-center gap-2 px-3 py-2 text-sm hover:bg-gray-100 dark:hover:bg-gray-800">
|
| | <svg className="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
| | <path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z" />
|
| | </svg>
|
| | Profile
|
| | </a>
|
| | <a href="#" className="flex items-center gap-2 px-3 py-2 text-sm hover:bg-gray-100 dark:hover:bg-gray-800">
|
| | <svg className="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
| | <path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 001.066-2.573c-.94-1.543.826-3.31 2.37-2.37.996.608 2.296.07 2.572-1.065z" />
|
| | <path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M15 12a3 3 0 11-6 0 3 3 0 016 0z" />
|
| | </svg>
|
| | Settings
|
| | </a>
|
| | <a href="#" className="flex items-center gap-2 px-3 py-2 text-sm hover:bg-gray-100 dark:hover:bg-gray-800">
|
| | <svg className="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
| | <path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M18.364 5.636l-3.536 3.536m0 5.656l3.536 3.536M9.172 9.172L5.636 5.636m3.536 9.192L5.636 18.364M12 2.25a9.75 9.75 0 100 19.5 9.75 9.75 0 000-19.5z" />
|
| | </svg>
|
| | API Keys
|
| | </a>
|
| | <a href="#" className="flex items-center gap-2 px-3 py-2 text-sm hover:bg-gray-100 dark:hover:bg-gray-800">
|
| | <svg className="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
| | <path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M8.228 9c.549-1.165 2.03-2 3.772-2 2.21 0 4 1.343 4 3 0 1.4-1.278 2.575-3.006 2.907-.542.104-.994.54-.994 1.093m0 3h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z" />
|
| | </svg>
|
| | Help & Support
|
| | </a>
|
| | <hr className="my-1 border-gray-200 dark:border-gray-700" />
|
| | <div className="px-3 py-2">
|
| | <SignOutButton />
|
| | </div>
|
| | </div>
|
| | </div>
|
| | )}
|
| | </div>
|
| | )}
|
| | </header>
|
| | );
|
| | }
|
| |
|