remove old
This commit is contained in:
parent
014b08c88c
commit
dcfd3d956e
|
@ -6,6 +6,8 @@ It aims to mimic ChatGPT's interface and functionality.
|
||||||
|
|
||||||
All conversations are stored locally on your device.
|
All conversations are stored locally on your device.
|
||||||
|
|
||||||
|
See a [demo]()
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
## Updates
|
## Updates
|
||||||
|
|
|
@ -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>;
|
|
||||||
};
|
|
|
@ -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>
|
|
||||||
);
|
|
||||||
};
|
|
|
@ -189,6 +189,7 @@ export default function Home() {
|
||||||
href="/favicon.ico"
|
href="/favicon.ico"
|
||||||
/>
|
/>
|
||||||
</Head>
|
</Head>
|
||||||
|
|
||||||
{selectedConversation && (
|
{selectedConversation && (
|
||||||
<div className={`flex h-screen text-white ${lightMode}`}>
|
<div className={`flex h-screen text-white ${lightMode}`}>
|
||||||
<Sidebar
|
<Sidebar
|
||||||
|
|
Loading…
Reference in New Issue