Compare commits
No commits in common. "4bf42f6feaba09c2c94ecfd37ff9a7cd67c51713" and "7add64fb2b805f603127c21f1d6ba4f12e69594b" have entirely different histories.
4bf42f6fea
...
7add64fb2b
@ -29,11 +29,7 @@ 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: {
|
||||||
|
@ -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-[#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}
|
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">
|
||||||
|
@ -85,7 +85,7 @@ const MessageBubble = ({ message, userName, avatarConfig }: MessageBubbleProps)
|
|||||||
>
|
>
|
||||||
{!isUser && (
|
{!isUser && (
|
||||||
<motion.div
|
<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 }}
|
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-[#F3BA2F] text-white'
|
? 'bg-[#1DA2FF] text-white'
|
||||||
: 'bg-white border border-gray-200'
|
: 'bg-white border border-gray-200'
|
||||||
}`}
|
}`}
|
||||||
whileHover={{ scale: 1.006 }}
|
whileHover={{ scale: 1.006 }}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user