feat: add telegram-style resource stream

This commit is contained in:
TerryM
2026-05-25 05:25:57 +08:00
parent aaebd7ccd1
commit a784f159fe
45 changed files with 3201 additions and 1160 deletions

View File

@@ -0,0 +1,9 @@
export function DaySeparator({ label }: { label: string }) {
return (
<div className="sticky top-[58px] z-[5] flex justify-center py-2">
<span className="rounded-full bg-ark-panel/80 px-3 py-1 text-xs text-neutral-300 backdrop-blur">
{label}
</span>
</div>
);
}