Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions src/components/home/ChatBot.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,24 @@ const ChatBot = () => {
}, []);

return (
<div className="text-cookcraft-olive flex h-screen w-screen flex-col items-center justify-center text-6xl font-bold">
<div className="text-cookcraft-olive flex h-screen w-screen flex-col items-center justify-center">
<motion.p
initial={{ opacity: 0 }}
animate={{ opacity: 1 }}
transition={{ duration: 1 }}
className="text-3xl font-bold sm:text-5xl lg:text-6xl"
>
{displayedText}
</motion.p>
<Image src={logo} alt="Cook Craft Logo" className="mt-20 w-1/4" />
<Image
src={logo}
alt="Cook Craft Logo"
className="mt-17 w-40 sm:w-56 md:w-64 lg:w-72 xl:w-80"
/>
<input
type="text"
placeholder="Ask CookCraft..."
className="mt-12 w-1/3 rounded-2xl border-3 p-4 text-2xl font-normal"
className="mt-12 w-1/2 rounded-2xl border-3 p-4 font-normal md:w-1/3"
/>
</div>
);
Expand Down
Loading