update and fix messanger

This commit is contained in:
lendry
2026-06-26 00:16:17 +03:00
parent b0ea87e898
commit 4e78a81eb1
14 changed files with 898 additions and 125 deletions

View File

@@ -0,0 +1,13 @@
'use client';
import { formatChatDateLabel } from '@/lib/chat-date-utils';
export function ChatDateSeparator({ date }: { date: string }) {
return (
<div className="flex items-center gap-3 py-2">
<div className="h-px flex-1 bg-black/10" />
<span className="shrink-0 text-xs font-medium text-[#667085]">{formatChatDateLabel(date)}</span>
<div className="h-px flex-1 bg-black/10" />
</div>
);
}