Skip to content

Commit

Permalink
Merge branch 'master' into 783-backend-write-a-cron-job-to-automatica…
Browse files Browse the repository at this point in the history
…lly-update-a-google-sheet-with-the-members
  • Loading branch information
jeffplays2005 authored Oct 5, 2024
2 parents c1b68cb + eb66544 commit 46ca353
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 46ca353

Please sign in to comment.