mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-19 09:50:15 +01:00
8 lines
258 B
TypeScript
8 lines
258 B
TypeScript
|
|
export default function Footer() {
|
||
|
|
return (
|
||
|
|
<div className="relative px-2 py-2 text-center text-xs text-gray-600 dark:text-gray-300 md:px-[60px]">
|
||
|
|
<span>ChatGPT can make mistakes. Consider checking important information.</span>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|