mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-16 16:30:15 +01:00
feat: add version number in UI (#704)
* feat: add version number in UI * feat: add version number in UI * feat: add version number in footer * Update Footer.tsx More concise, cleaner message --------- Co-authored-by: Danny Avila <110412045+danny-avila@users.noreply.github.com>
This commit is contained in:
parent
bec1d245bd
commit
e9c981c202
1 changed files with 3 additions and 3 deletions
|
|
@ -3,6 +3,7 @@ import { useGetStartupConfig } from 'librechat-data-provider';
|
|||
|
||||
export default function Footer() {
|
||||
const { data: config } = useGetStartupConfig();
|
||||
|
||||
return (
|
||||
<div className="hidden px-3 pb-1 pt-2 text-center text-xs text-black/50 dark:text-white/50 md:block md:px-4 md:pb-4 md:pt-3">
|
||||
<a
|
||||
|
|
@ -11,10 +12,9 @@ export default function Footer() {
|
|||
rel="noreferrer"
|
||||
className="underline"
|
||||
>
|
||||
{config?.appTitle || 'LibreChat'}
|
||||
{config?.appTitle || 'LibreChat'} v0.5.5
|
||||
</a>
|
||||
. Serves and searches all conversations reliably. All AI convos under one house. Pay per call
|
||||
and not per month (cents compared to dollars).
|
||||
{' - '}. All AI conversations in one place. Pay per call and not per month.
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue