-
-
Notifications
You must be signed in to change notification settings - Fork 225
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(frontend): add dashboard and listeners pages
- Added a new dashboard page to display the status of the application. - Added a new listeners page to manage the listeners of the application. - Updated the app-sidebar component to include links to the new pages. Refactor the server configuration files to use JSON format - Updated the server configuration files to use JSON format for better readability and maintainability. feat(frontend): init frontend - Initialized the frontend of the application.
- Loading branch information
1 parent
5909e76
commit 20d8865
Showing
3 changed files
with
38 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
"use client"; | ||
|
||
import { StatusPage } from "@/components/Status" | ||
|
||
export default function Page() { | ||
return <> | ||
<StatusPage /> | ||
</> | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
export default function Page() { | ||
return ( | ||
<> | ||
Listeners | ||
</> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters