diff --git a/scheduler_app/app/(routes)/create_meeting/_components/meetingForm.js b/scheduler_app/app/(routes)/create_meeting/_components/meetingForm.js
new file mode 100644
index 0000000..6d71f19
--- /dev/null
+++ b/scheduler_app/app/(routes)/create_meeting/_components/meetingForm.js
@@ -0,0 +1,47 @@
+import { Input } from '@/components/ui/input'
+import { ChevronLeft } from 'lucide-react'
+import React from 'react'
+import {DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger,} from "@/components/ui/dropdown-menu"
+import LocationOption from '@/app/_utils/LocationOption'
+import Image from 'next/image'
+
+const MeetingForm = () => {
+
+ return (
+
+
Go back
+
+
+
Event Name *
+
+
Meeting Length *
+
+
+
+
+
+ 15 minutes
+ 30 minutes
+ 45 minutes
+ 60 minutes
+
+
+
Location *
+
+ {LocationOption.map((option, index) => (
+
+ ))}
+
+
Add url
+
+
+
+ )
+}
+
+export default MeetingForm
\ No newline at end of file
diff --git a/scheduler_app/app/(routes)/create_meeting/page.js b/scheduler_app/app/(routes)/create_meeting/page.js
new file mode 100644
index 0000000..735724c
--- /dev/null
+++ b/scheduler_app/app/(routes)/create_meeting/page.js
@@ -0,0 +1,15 @@
+import React from 'react'
+import MeetingForm from './_components/meetingForm'
+
+const CreateMeeting = () => {
+ return (
+
+ )
+}
+
+export default CreateMeeting
\ No newline at end of file
diff --git a/scheduler_app/app/(routes)/dashboard/_components/sideNav.js b/scheduler_app/app/(routes)/dashboard/_components/sideNav.js
index 0ddeb39..15dd146 100644
--- a/scheduler_app/app/(routes)/dashboard/_components/sideNav.js
+++ b/scheduler_app/app/(routes)/dashboard/_components/sideNav.js
@@ -10,30 +10,31 @@ const menu = [
{
id: 1,
name: 'Meeting',
- path: 'dashboard/meeting',
+ path: '/dashboard/meeting',
icon: BriefcaseBusiness
},
{
id: 2,
name: 'Scheduled Meeting',
- path: 'dashboard/scheduled_meeting',
+ path: '/dashboard/scheduled_meeting',
icon: CalendarClock
},
{
id: 3,
name: 'Availability',
- path: 'dashboard/availability',
+ path: '/dashboard/availability',
icon: Clock
},
{
id: 4,
name: 'Setting',
- path: 'dashboard/setting',
+ path: '/dashboard/setting',
icon: Settings
}
]
const SideNav = () => {
+
const path = usePathname();
const [activePath, setActivePath] = useState(path);
@@ -46,11 +47,13 @@ const SideNav = () => {
-
+
+
+
{menu.map((item, index) => (
-