Update components/chat/sidebar/SidebarHeader.tsx

This commit is contained in:
yoginawaka 2025-02-22 06:28:55 +00:00
parent c63137362c
commit 885183a04a

View File

@ -10,15 +10,15 @@ interface SidebarHeaderProps {
export const SidebarHeader = ({ onNewChat, logo }: SidebarHeaderProps) => ( export const SidebarHeader = ({ onNewChat, logo }: SidebarHeaderProps) => (
<div className="p-4 border-b"> <div className="p-4 border-b">
<div className="flex items-center justify-between mb-10"> <div className="flex items-center justify-between mb-10">
<Image src={logo} alt="Almaze Logo" width={26} /> <Image src={logo} alt="Soviro Logo" width={26} />
<div className="flex items-center space-x-4 mt-1"> <div className="flex items-center space-x-4 mt-1">
<a href="https://x.com/almaze_ai" target='_blank'> <a href="https://x.com/soviro_labs" target='_blank'>
<RiTwitterXLine className='cursor-pointer text-gray-600 hover:text-gray-800 transition-colors'/> <RiTwitterXLine className='cursor-pointer text-gray-600 hover:text-gray-800 transition-colors'/>
</a> </a>
<a href="https://almaze.gitbook.io/docs/" target='_blank'> <a href="https://sovirolabs.gitbook.io/docs/" target='_blank'>
<SiGitbook className='cursor-pointer text-gray-600 hover:text-gray-800 transition-colors'/> <SiGitbook className='cursor-pointer text-gray-600 hover:text-gray-800 transition-colors'/>
</a> </a>
<a href="https://github.com/Almaze-Labs" target='_blank'> <a href="https://github.com/Soviro-Labs" target='_blank'>
<SiGithub className='cursor-pointer text-gray-600 hover:text-gray-800 transition-colors'/> <SiGithub className='cursor-pointer text-gray-600 hover:text-gray-800 transition-colors'/>
</a> </a>
</div> </div>