Files
message-inbox-web-frontend-sdk/apps/web/app/(app)/browse/page.tsx
T
2026-07-17 21:48:37 +05:30

15 lines
428 B
TypeScript

import { Placeholder } from "@/components/Placeholder";
import { Hash } from "lucide-react";
export default function BrowsePage() {
return (
<Placeholder
eyebrow="Messaging"
title="Browse channels"
subtitle="Discover and join channels"
icon={<Hash size={26} />}
body="A channel directory with search, categories and one-click join. Gated by the `channelBrowser` feature flag."
/>
);
}