Skip to content

Commit

Permalink
Add admin events route (#790)
Browse files Browse the repository at this point in the history
* Add admin events route

* Remove views in events view

Not implemented yet

* Add work in progress to admin events page
  • Loading branch information
jeffplays2005 authored Oct 4, 2024
1 parent f6a3545 commit eb66544
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
16 changes: 16 additions & 0 deletions client/src/app/admin/events/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
"use client"

import WorkInProgressComponent from "@/components/generic/WorkInProgressComponent/WorkInProgressComponent"
import { AdminHeading } from "../AdminHeading"

export default function AdminEventsPage() {
return (
<>
<AdminHeading title="Events" />
<div className="fixed flex h-screen w-full flex-col items-center justify-center gap-4">
<WorkInProgressComponent pageName="Admin Events" />
<p className="text-light-blue-100">Work in progress</p>
</div>
</>
)
}
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const Exit = () => {
const AdminNavbar = () => {
return (
<div
className="top-13 fixed z-[99] flex h-[46px] w-screen
className="top-13 fixed z-[99] flex h-[46px] w-screen
items-center overflow-hidden border bg-white"
>
<span className="relative flex w-full items-center px-4 md:pl-28">
Expand All @@ -27,6 +27,9 @@ const AdminNavbar = () => {
<WrappedTab mobileCompatiability={false} to="/admin/bookings">
bookings
</WrappedTab>
<WrappedTab mobileCompatiability={false} to="/admin/events">
events
</WrappedTab>
<WrappedTab mobileCompatiability={false} to="/admin/availability">
availability
</WrappedTab>
Expand Down

0 comments on commit eb66544

Please sign in to comment.