Compare commits
2 Commits
7add64fb2b
...
4bf42f6fea
Author | SHA1 | Date | |
---|---|---|---|
4bf42f6fea | |||
47e52b5a2d |
@ -29,7 +29,11 @@ export default function TokenomicsSection() {
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
<<<<<<< HEAD
|
||||
color: "#1D9BF0",
|
||||
=======
|
||||
color: "#1D9BF0",
|
||||
>>>>>>> 7add64fb2b805f603127c21f1d6ba4f12e69594b
|
||||
title: "TEAM ALLOCATIONS",
|
||||
percentage: "2%",
|
||||
content: {
|
||||
|
@ -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-[#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}
|
||||
/>
|
||||
<div className="absolute right-4 top-1/2 -translate-y-1/2 flex items-center gap-2 text-[12px] text-gray-400">
|
||||
|
@ -85,7 +85,7 @@ const MessageBubble = ({ message, userName, avatarConfig }: MessageBubbleProps)
|
||||
>
|
||||
{!isUser && (
|
||||
<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 }}
|
||||
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-[#1DA2FF] text-white'
|
||||
? 'bg-[#F3BA2F] text-white'
|
||||
: 'bg-white border border-gray-200'
|
||||
}`}
|
||||
whileHover={{ scale: 1.006 }}
|
||||
|
Loading…
x
Reference in New Issue
Block a user