/** * @file app/(app)/page.tsx * @description Main dashboard page displaying the primary chat view with header, message area, and input control. */ import { ChatHeader } from "@/components/chat/ChatHeader"; import { ChatInput } from "@/components/chat/ChatInput"; /** * Renders the main application dashboard containing the general chat interface. * * @returns {Promise} The rendered application dashboard page. */ export default async function ApplicationDashboardPage() { return (
This is the beginning of the #general channel.
); }