diff --git a/client/src/components/Input/index.jsx b/client/src/components/Input/index.jsx index 5157820abf..a3510affdd 100644 --- a/client/src/components/Input/index.jsx +++ b/client/src/components/Input/index.jsx @@ -135,7 +135,7 @@ export default function TextChat({ isSearchView = false }) { return ( <> -
+
diff --git a/client/src/components/Nav/NavLinks.jsx b/client/src/components/Nav/NavLinks.jsx index 683c442fc4..79812b8cd6 100644 --- a/client/src/components/Nav/NavLinks.jsx +++ b/client/src/components/Nav/NavLinks.jsx @@ -2,8 +2,6 @@ import { Menu, Transition } from '@headlessui/react'; import { Fragment, useState } from 'react'; import { useRecoilValue } from 'recoil'; import SearchBar from './SearchBar'; -import TrashIcon from '../svg/TrashIcon'; -import GearIcon from '../svg/GearIcon'; import Settings from './Settings'; import { Download } from 'lucide-react'; import NavLink from './NavLink'; @@ -12,9 +10,9 @@ import ClearConvos from './ClearConvos'; import Logout from './Logout'; import { useAuthContext } from '~/hooks/AuthContext'; import { cn } from '~/utils/'; -import DotsIcon from '../svg/DotsIcon'; import store from '~/store'; +import { LinkIcon, DotsIcon, GearIcon, TrashIcon } from '~/components'; export default function NavLinks({ clearSearch, isSearchEnabled }) { const [showExports, setShowExports] = useState(false); @@ -96,6 +94,14 @@ export default function NavLinks({ clearSearch, isSearchEnabled }) { clickHandler={() => setShowClearConvos(true)} /> + + } + text="Help & FAQ" + clickHandler={() => window.open('https://docs.librechat.ai/', '_blank')} + /> + { // dispatch(setInputValue('')); @@ -30,7 +33,7 @@ export default function NewChat() { - New chat + {localize(lang, 'com_ui_new_chat')} ); } diff --git a/client/src/components/Nav/index.jsx b/client/src/components/Nav/index.jsx index 4da77d5474..b0800f7ffb 100644 --- a/client/src/components/Nav/index.jsx +++ b/client/src/components/Nav/index.jsx @@ -179,7 +179,7 @@ export default function Nav({ navVisible, setNavVisible }) {