We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61f5cfc commit 2465f06Copy full SHA for 2465f06
app/[locale]/manage/page.tsx
@@ -0,0 +1,20 @@
1
+'use client';
2
+
3
+import { useRouter } from 'next/navigation';
4
+import { useEffect } from 'react';
5
6
+import { Loading } from '@/components/loading';
7
8
+const Manage = () => {
9
+ const router = useRouter();
10
+ useEffect(() => {
11
+ // Redirect to the Use Cases page
12
+ router.push(`/manage/usecases`);
13
+ }, [router]);
14
+ return (
15
+ <div>
16
+ <Loading />
17
+ </div> // Optional: You can show a loading message or spinner here
18
+ );
19
+};
20
+export default Manage;
0 commit comments