Files
GMW/services/frontend/src/app/page.tsx
T
asepharyana c2502a0e5f
Deploy to VPS / deploy (push) Failing after 1m36s
feat: add recordings, settings, and voice pages with WebSocket integration
- Implemented RecordingsPage to display and manage voice recordings with live updates via WebSocket.
- Created SettingsPage for user preferences, including theme toggling and server configuration display.
- Developed VoicePage for managing voice connections, including guild and channel selection, and active speaker display.
- Introduced GuildSelector component for selecting Discord guilds with error handling and loading states.
- Added utility functions for formatting numbers and bytes, and safely parsing JSON.
- Established navigation structure for the dashboard with relevant links for new features.
2026-07-26 15:34:08 +07:00

6 lines
109 B
TypeScript

import { redirect } from "next/navigation";
export default function RootPage() {
redirect("/messages");
}