Project structure changes ad new files added in dashboard folders
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
"use client"
|
||||
|
||||
import MeetingRoomPortal from "@/components/dashboard/workplace/meetingRoom";
|
||||
|
||||
|
||||
|
||||
export default function MeetingPage() {
|
||||
return (
|
||||
|
||||
|
||||
<div className="p-8 mx-3">
|
||||
<MeetingRoomPortal/>
|
||||
|
||||
</div>
|
||||
|
||||
);
|
||||
}
|
||||
@@ -1,9 +1,9 @@
|
||||
"use client"
|
||||
|
||||
import VistiorManagementPortal from "@/components/dashboard/visitorManagement";
|
||||
import VistiorManagementPortal from "@/components/dashboard/workplace/visitorManagement";
|
||||
|
||||
|
||||
export default function InventoryPage() {
|
||||
export default function VisitorPage() {
|
||||
return (
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,16 @@
|
||||
"use client"
|
||||
import WorkSpacePortal from "@/components/dashboard/workplace/workspace";
|
||||
|
||||
|
||||
|
||||
export default function WorkSpacePage() {
|
||||
return (
|
||||
|
||||
|
||||
<div className="p-8 mx-3">
|
||||
<WorkSpacePortal/>
|
||||
|
||||
</div>
|
||||
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user