mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-18 01:10:14 +01:00
* 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>
20 lines
630 B
TypeScript
20 lines
630 B
TypeScript
import React from 'react';
|
|
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
|
|
href="https://github.com/danny-avila/LibreChat"
|
|
target="_blank"
|
|
rel="noreferrer"
|
|
className="underline"
|
|
>
|
|
{config?.appTitle || 'LibreChat'} v0.5.5
|
|
</a>
|
|
{' - '}. All AI conversations in one place. Pay per call and not per month.
|
|
</div>
|
|
);
|
|
}
|