/** * @file app/(app)/page.tsx * @description Main application layout page featuring a dynamic header and default welcome screen. */ import { AppHeader } from "@/components/layout/AppHeader"; /** * Renders the default application page with the header and central welcome message. * * @returns {JSX.Element} The rendered application page view. */ export default function AppPage() { return (
{/* Dynamic Header */} {/* Main Content */}

Welcome back!

Select a server from the left side or start a chat with your friends.

); }