diff --git a/src/components/main/Footer.jsx b/src/components/main/Footer.jsx new file mode 100644 index 0000000000..f80ebd9092 --- /dev/null +++ b/src/components/main/Footer.jsx @@ -0,0 +1,18 @@ +import React from 'react'; + +export default function Footer() { + return ( +
+ + ChatGPT Clone + + . Serves and searches all conversations reliably. All AI convos under one house. Pay per + call and not per month (cents compared to dollars). +
+ ); +} diff --git a/src/components/main/TextChat.jsx b/src/components/main/TextChat.jsx index 44a4fd0103..fd37bf4063 100644 --- a/src/components/main/TextChat.jsx +++ b/src/components/main/TextChat.jsx @@ -1,6 +1,7 @@ import React, { useState } from 'react'; import SubmitButton from './SubmitButton'; import Regenerate from './Regenerate'; +import Footer from './Footer'; import TextareaAutosize from 'react-textarea-autosize'; import handleSubmit from '~/utils/handleSubmit'; import { useSelector, useDispatch } from 'react-redux'; @@ -127,18 +128,7 @@ export default function TextChat({ messages, reloadConvos }) { )} -
- - ChatGPT Jan 30 Version - - . Free Research Preview. Our goal is to make AI systems more natural and safe to - interact with. Your feedback will help us improve. -
+