remove old

This commit is contained in:
Mckay Wrigley 2023-03-15 07:07:26 -06:00
parent 014b08c88c
commit dcfd3d956e
4 changed files with 3 additions and 21 deletions

View File

@ -6,6 +6,8 @@ It aims to mimic ChatGPT's interface and functionality.
All conversations are stored locally on your device.
See a [demo]()
![Chatbot UI Pro](./public/screenshot.png)
## Updates

View File

@ -1,5 +0,0 @@
import { FC } from "react";
export const Footer: FC = () => {
return <div className="flex h-[30px] sm:h-[50px] border-t border-neutral-300 py-2 px-8 items-center sm:justify-between justify-center"></div>;
};

View File

@ -1,16 +0,0 @@
import { FC } from "react";
export const Navbar: FC = () => {
return (
<div className="flex h-[50px] sm:h-[60px] border-b border-neutral-300 py-2 px-2 sm:px-8 items-center justify-between">
<div className="font-bold text-3xl flex items-center">
<a
className="ml-2 hover:opacity-50"
href="https://code-scaffold.vercel.app"
>
Chatbot UI
</a>
</div>
</div>
);
};

View File

@ -189,6 +189,7 @@ export default function Home() {
href="/favicon.ico"
/>
</Head>
{selectedConversation && (
<div className={`flex h-screen text-white ${lightMode}`}>
<Sidebar