🚀 Fix formatting

This commit is contained in:
Asim Shrestha
2023-04-07 17:01:08 -07:00
parent 8244e68560
commit b18dc903d1
5 changed files with 80 additions and 60 deletions

View File

@@ -35,7 +35,7 @@ const Button = forwardRef(
"text-gray/50 rounded-lg border-[2px] border-white/30 px-10 py-3 font-bold transition-all " + "text-gray/50 rounded-lg border-[2px] border-white/30 px-10 py-3 font-bold transition-all " +
props.className + props.className +
(props.disabled (props.disabled
? " cursor-not-allowed border-white/10 bg-black/60 text-white/30" ? " cursor-not-allowed border-white/10 bg-zinc-900 text-white/30"
: " mou cursor-pointer bg-[#1E88E5]/70 text-white/80 hover:border-white/80 hover:bg-[#0084f7] hover:text-white hover:shadow-2xl") : " mou cursor-pointer bg-[#1E88E5]/70 text-white/80 hover:border-white/80 hover:bg-[#0084f7] hover:text-white hover:shadow-2xl")
} }
onClick={onClick} onClick={onClick}

View File

@@ -12,7 +12,7 @@ const ChatWindow = ({ children, className }: ChatWindowProps) => {
return ( return (
<div <div
className={ className={
"border-translucent flex h-80 w-full max-w-screen-md flex-col rounded-3xl bg-black/50 text-white drop-shadow-lg " + "border-translucent flex h-full w-full flex-col rounded-3xl border-2 border-white/20 bg-zinc-900 text-white shadow-2xl drop-shadow-lg " +
className className
} }
> >

View File

@@ -1,13 +1,17 @@
import React from "react";
import { AiFillRobot } from "react-icons/Ai";
import { BiPlus } from "react-icons/bi";
const Drawer = () => { const Drawer = () => {
return ( return (
<div <div
id="drawer-example" id="drawer-example"
className="z-50 m-0 flex h-screen w-72 flex-col gap-2 border-b-[1px] border-b-white/10 bg-[#101010]/50 p-0 p-3 text-white backdrop-blur-sm" className="z-50 m-0 flex h-screen w-72 flex-col gap-2 border-b-[1px] border-b-white/10 bg-[#101010]/50 p-0 p-3 font-mono text-white backdrop-blur-sm"
> >
<NewAgent /> <NewAgent />
<DrawerItem text="HustleGPT" /> <DrawerItem icon={<AiFillRobot />} text="HustleGPT" />
<DrawerItem text="ChefGPT" /> <DrawerItem icon={<AiFillRobot />} text="ChefGPT" />
<DrawerItem text="WorldPeaceGPT" /> <DrawerItem icon={<AiFillRobot />} text="WorldPeaceGPT" />
<hr className="my-5 border-white/20" /> <hr className="my-5 border-white/20" />
</div> </div>
); );
@@ -16,15 +20,23 @@ const Drawer = () => {
const NewAgent = () => { const NewAgent = () => {
return ( return (
<div className="mb-5 flex flex-row items-center rounded-md border-[1px] border-white/20 p-2 hover:bg-white/5"> <div className="mb-5 flex flex-row items-center rounded-md border-[1px] border-white/20 p-2 hover:bg-white/5">
<span className="text-md font-thin">New Agent</span> <BiPlus />
<span className="text-md ml-2">New Agent</span>
</div> </div>
); );
}; };
const DrawerItem = ({ text }: { text: string }) => { const DrawerItem = ({
icon,
text,
}: {
icon: React.ReactNode;
text: string;
}) => {
return ( return (
<div className="flex flex-row items-center rounded-md p-2 hover:bg-white/5"> <div className="flex flex-row items-center rounded-md p-2 hover:bg-white/5">
<span className="text-md font-thin">{text}</span> {icon}
<span className="text-md ml-2">{text}</span>
</div> </div>
); );
}; };

View File

@@ -9,9 +9,9 @@ interface InputProps {
const Input = ({ placeholder, left, value, onChange }: InputProps) => { const Input = ({ placeholder, left, value, onChange }: InputProps) => {
return ( return (
<div className="flex w-[60%] items-center rounded-xl bg-[#3a3a3a] font-mono text-lg text-white/75 shadow-2xl"> <div className="flex w-full items-center rounded-xl bg-[#3a3a3a] font-mono text-lg text-white/75 shadow-2xl">
{left != null ? ( {left != null ? (
<div className="center flex h-full items-center rounded-xl rounded-r-none border-[2px] border-r-0 border-white/10 px-5 text-lg font-semibold tracking-wider transition-all"> <div className="center flex items-center rounded-xl rounded-r-none border-[2px] border-r-0 border-white/10 px-5 py-3 text-lg font-semibold tracking-wider transition-all">
{left} {left}
</div> </div>
) : null} ) : null}

View File

@@ -53,7 +53,11 @@ const Home: NextPage = () => {
<Drawer /> <Drawer />
<div <div
id="content" id="content"
className="flex h-screen w-full flex-col items-center justify-center gap-3" className="flex h-screen w-full items-center justify-center"
>
<div
id="layout"
className="flex h-full w-full max-w-screen-lg flex-col items-center justify-center gap-3 py-10"
> >
<div <div
id="title" id="title"
@@ -71,7 +75,10 @@ const Home: NextPage = () => {
<ChatWindow className="m-10"> <ChatWindow className="m-10">
{messages.map((message, index) => ( {messages.map((message, index) => (
<ChatMessage key={`${index}-${message.type}`} message={message} /> <ChatMessage
key={`${index}-${message.type}`}
message={message}
/>
))} ))}
{loading ? <div>LOADING...</div> : null} {loading ? <div>LOADING...</div> : null}
</ChatWindow> </ChatWindow>
@@ -108,6 +115,7 @@ const Home: NextPage = () => {
Deploy Agent Deploy Agent
</Button> </Button>
</div> </div>
</div>
</main> </main>
</DefaultLayout> </DefaultLayout>
); );