2023-02-11 12:54:02 -05:00
|
|
|
import React from 'react';
|
2023-07-27 14:49:47 -04:00
|
|
|
import { useGetStartupConfig } from 'librechat-data-provider';
|
2023-02-11 12:54:02 -05:00
|
|
|
|
|
|
|
|
export default function Footer() {
|
2023-06-15 09:36:34 -07:00
|
|
|
const { data: config } = useGetStartupConfig();
|
2023-07-28 13:48:02 -04:00
|
|
|
|
2023-02-11 12:54:02 -05:00
|
|
|
return (
|
2023-05-18 11:09:31 -07:00
|
|
|
<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">
|
2023-02-11 12:54:02 -05:00
|
|
|
<a
|
2023-06-05 14:24:08 -04:00
|
|
|
href="https://github.com/danny-avila/LibreChat"
|
2023-02-11 12:54:02 -05:00
|
|
|
target="_blank"
|
|
|
|
|
rel="noreferrer"
|
|
|
|
|
className="underline"
|
|
|
|
|
>
|
2023-07-28 13:48:02 -04:00
|
|
|
{config?.appTitle || 'LibreChat'} v0.5.5
|
2023-02-11 12:54:02 -05:00
|
|
|
</a>
|
2023-07-28 13:48:02 -04:00
|
|
|
{' - '}. All AI conversations in one place. Pay per call and not per month.
|
2023-02-11 12:54:02 -05:00
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|