Skip to content

Commit 2465f06

Browse files
committed
add page.tsx in manage
1 parent 61f5cfc commit 2465f06

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

app/[locale]/manage/page.tsx

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)