NORY-34: add missing placeholder pages
This commit is contained in:
parent
c9ebf95dd5
commit
502098d8ef
4 changed files with 36 additions and 3 deletions
12
dashboard/src/app/(inside)/analytics/page.tsx
Normal file
12
dashboard/src/app/(inside)/analytics/page.tsx
Normal file
|
@ -0,0 +1,12 @@
|
|||
export default async function AnalyticsPage() {
|
||||
return (
|
||||
<div className="space-y-4">
|
||||
<div>
|
||||
<p className="text-3xl font-bold leading-tight tracking-tight">Analytics</p>
|
||||
<p className="text-lg font-light">
|
||||
Part of milestone v0.3.0
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
export default async function ApplicationPage() {
|
||||
return <></>;
|
||||
}
|
12
dashboard/src/app/(inside)/client/page.tsx
Normal file
12
dashboard/src/app/(inside)/client/page.tsx
Normal file
|
@ -0,0 +1,12 @@
|
|||
export default async function ListClientPage() {
|
||||
return (
|
||||
<div className="space-y-4">
|
||||
<div>
|
||||
<p className="text-3xl font-bold leading-tight tracking-tight">OAuth2 Clients</p>
|
||||
<p className="text-lg font-light">
|
||||
Part of milestone v0.2.0
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
12
dashboard/src/app/(inside)/relation/page.tsx
Normal file
12
dashboard/src/app/(inside)/relation/page.tsx
Normal file
|
@ -0,0 +1,12 @@
|
|||
export default async function ListRelationPage() {
|
||||
return (
|
||||
<div className="space-y-4">
|
||||
<div>
|
||||
<p className="text-3xl font-bold leading-tight tracking-tight">Relations</p>
|
||||
<p className="text-lg font-light">
|
||||
Part of milestone v0.2.0
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
Loading…
Add table
Reference in a new issue