2026-05-25 05:25:57 +08:00
|
|
|
import { MessageStream } from "../components/messageStream/MessageStream";
|
2026-05-16 00:18:22 +08:00
|
|
|
import { useI18n } from "../i18n";
|
|
|
|
|
|
|
|
|
|
export function Browse() {
|
2026-05-25 05:25:57 +08:00
|
|
|
const { t } = useI18n();
|
2026-05-16 00:18:22 +08:00
|
|
|
return (
|
2026-05-25 05:25:57 +08:00
|
|
|
<section className="space-y-3">
|
|
|
|
|
<h1 className="mx-auto max-w-full px-3 text-2xl font-bold md:max-w-[820px] lg:max-w-[1080px] xl:max-w-[1180px]">
|
|
|
|
|
{t("all")}
|
|
|
|
|
</h1>
|
|
|
|
|
<MessageStream scope={{ kind: "all" }} />
|
|
|
|
|
</section>
|
2026-05-16 00:18:22 +08:00
|
|
|
);
|
|
|
|
|
}
|