From 502098d8ef8e270fa1a3c35fb58cf3eb9a487103 Mon Sep 17 00:00:00 2001 From: Markus Thielker Date: Fri, 27 Dec 2024 17:10:38 +0100 Subject: [PATCH] NORY-34: add missing placeholder pages --- dashboard/src/app/(inside)/analytics/page.tsx | 12 ++++++++++++ dashboard/src/app/(inside)/application/page.tsx | 3 --- dashboard/src/app/(inside)/client/page.tsx | 12 ++++++++++++ dashboard/src/app/(inside)/relation/page.tsx | 12 ++++++++++++ 4 files changed, 36 insertions(+), 3 deletions(-) create mode 100644 dashboard/src/app/(inside)/analytics/page.tsx delete mode 100644 dashboard/src/app/(inside)/application/page.tsx create mode 100644 dashboard/src/app/(inside)/client/page.tsx create mode 100644 dashboard/src/app/(inside)/relation/page.tsx diff --git a/dashboard/src/app/(inside)/analytics/page.tsx b/dashboard/src/app/(inside)/analytics/page.tsx new file mode 100644 index 0000000..e416cc9 --- /dev/null +++ b/dashboard/src/app/(inside)/analytics/page.tsx @@ -0,0 +1,12 @@ +export default async function AnalyticsPage() { + return ( +
+
+

Analytics

+

+ Part of milestone v0.3.0 +

+
+
+ ); +} diff --git a/dashboard/src/app/(inside)/application/page.tsx b/dashboard/src/app/(inside)/application/page.tsx deleted file mode 100644 index eda2025..0000000 --- a/dashboard/src/app/(inside)/application/page.tsx +++ /dev/null @@ -1,3 +0,0 @@ -export default async function ApplicationPage() { - return <>; -} diff --git a/dashboard/src/app/(inside)/client/page.tsx b/dashboard/src/app/(inside)/client/page.tsx new file mode 100644 index 0000000..db0117a --- /dev/null +++ b/dashboard/src/app/(inside)/client/page.tsx @@ -0,0 +1,12 @@ +export default async function ListClientPage() { + return ( +
+
+

OAuth2 Clients

+

+ Part of milestone v0.2.0 +

+
+
+ ); +} diff --git a/dashboard/src/app/(inside)/relation/page.tsx b/dashboard/src/app/(inside)/relation/page.tsx new file mode 100644 index 0000000..3ad6bef --- /dev/null +++ b/dashboard/src/app/(inside)/relation/page.tsx @@ -0,0 +1,12 @@ +export default async function ListRelationPage() { + return ( +
+
+

Relations

+

+ Part of milestone v0.2.0 +

+
+
+ ); +}