Compare commits

...

2 Commits

Author SHA1 Message Date
4bf42f6fea added changes 2025-02-22 00:15:17 +05:30
47e52b5a2d did more changes 2025-02-22 00:14:10 +05:30
3 changed files with 7 additions and 3 deletions

View File

@ -29,7 +29,11 @@ export default function TokenomicsSection() {
}, },
{ {
id: 2, id: 2,
<<<<<<< HEAD
color: "#1D9BF0",
=======
color: "#1D9BF0", color: "#1D9BF0",
>>>>>>> 7add64fb2b805f603127c21f1d6ba4f12e69594b
title: "TEAM ALLOCATIONS", title: "TEAM ALLOCATIONS",
percentage: "2%", percentage: "2%",
content: { content: {

View File

@ -12,7 +12,7 @@ export const ChatInput = ({ input, setInput, handleSubmit, isLoading }: ChatInpu
value={input} value={input}
onChange={(e) => setInput(e.target.value)} onChange={(e) => setInput(e.target.value)}
placeholder="What's on your mind?" placeholder="What's on your mind?"
className="w-full px-4 py-3 rounded-xl bg-white border border-gray-200 focus:ring-1 focus:ring-[#1DA2FF] focus:outline-none hover:ring-[#1DA2FF] hover:ring-1 transition duration-200 ease-linear" className="w-full px-4 py-3 rounded-xl bg-white border border-gray-200 focus:ring-1 focus:ring-[#F3BA2F] focus:outline-none hover:ring-[#F3BA2F] hover:ring-1 transition duration-200 ease-linear"
disabled={isLoading} disabled={isLoading}
/> />
<div className="absolute right-4 top-1/2 -translate-y-1/2 flex items-center gap-2 text-[12px] text-gray-400"> <div className="absolute right-4 top-1/2 -translate-y-1/2 flex items-center gap-2 text-[12px] text-gray-400">

View File

@ -85,7 +85,7 @@ const MessageBubble = ({ message, userName, avatarConfig }: MessageBubbleProps)
> >
{!isUser && ( {!isUser && (
<motion.div <motion.div
className="flex-shrink-0 bg-[#1DA2FF] rounded-full p-2" className="flex-shrink-0 bg-[#F3BA2F] rounded-full p-2"
whileHover={{ scale: 1.1 }} whileHover={{ scale: 1.1 }}
whileTap={{ scale: 0.9 }} whileTap={{ scale: 0.9 }}
> >
@ -120,7 +120,7 @@ const MessageBubble = ({ message, userName, avatarConfig }: MessageBubbleProps)
<motion.div <motion.div
className={`rounded-xl px-4 py-2 max-w-2xl relative ${ className={`rounded-xl px-4 py-2 max-w-2xl relative ${
isUser isUser
? 'bg-[#1DA2FF] text-white' ? 'bg-[#F3BA2F] text-white'
: 'bg-white border border-gray-200' : 'bg-white border border-gray-200'
}`} }`}
whileHover={{ scale: 1.006 }} whileHover={{ scale: 1.006 }}