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
-5
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>;
};
-16
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>
);
};