diff --git a/soul-admin/src/pages/find-partner/tabs/MentorTab.tsx b/soul-admin/src/pages/find-partner/tabs/MentorTab.tsx
new file mode 100644
index 00000000..106ebbce
--- /dev/null
+++ b/soul-admin/src/pages/find-partner/tabs/MentorTab.tsx
@@ -0,0 +1,28 @@
+import { useState } from 'react'
+import { MentorBookingTab } from './MentorBookingTab'
+import { MentorsPage } from '@/pages/mentors/MentorsPage'
+
+export function MentorTab() {
+ const [subTab, setSubTab] = useState<'booking' | 'manage'>('booking')
+
+ return (
+
+
+
+
+
+ {subTab === 'booking' &&
}
+ {subTab === 'manage' && (
+
+
+
+ )}
+
+ )
+}