import Image, { StaticImageData } from 'next/image'; import { Star } from 'lucide-react'; import { motion } from 'framer-motion'; import { RiTwitterXLine } from "react-icons/ri"; import { SiGithub , SiGitbook } from "react-icons/si"; interface StarredChatProps { title: string; isStarred: boolean; onClick: () => void; onStar: (e: React.MouseEvent) => void; } export const StarredChat = ({ title, isStarred, onClick, onStar }: StarredChatProps) => ( {title} { e.stopPropagation(); onStar(e); }} /> ); interface SidebarHeaderProps { onNewChat: () => void; logo: StaticImageData; } export const SidebarHeader = ({ onNewChat, logo }: SidebarHeaderProps) => (
Almaze Logo
);