Compare commits

..

No commits in common. "4bf42f6feaba09c2c94ecfd37ff9a7cd67c51713" and "7add64fb2b805f603127c21f1d6ba4f12e69594b" have entirely different histories.

3 changed files with 3 additions and 7 deletions

View File

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

View File

@ -12,7 +12,7 @@ export const ChatInput = ({ input, setInput, handleSubmit, isLoading }: ChatInpu
value={input}
onChange={(e) => setInput(e.target.value)}
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-[#F3BA2F] focus:outline-none hover:ring-[#F3BA2F] 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-[#1DA2FF] focus:outline-none hover:ring-[#1DA2FF] hover:ring-1 transition duration-200 ease-linear"
disabled={isLoading}
/>
<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 && (
<motion.div
className="flex-shrink-0 bg-[#F3BA2F] rounded-full p-2"
className="flex-shrink-0 bg-[#1DA2FF] rounded-full p-2"
whileHover={{ scale: 1.1 }}
whileTap={{ scale: 0.9 }}
>
@ -120,7 +120,7 @@ const MessageBubble = ({ message, userName, avatarConfig }: MessageBubbleProps)
<motion.div
className={`rounded-xl px-4 py-2 max-w-2xl relative ${
isUser
? 'bg-[#F3BA2F] text-white'
? 'bg-[#1DA2FF] text-white'
: 'bg-white border border-gray-200'
}`}
whileHover={{ scale: 1.006 }}