Skip to content

Commit

Permalink
Add work in progress to admin events page
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffplays2005 committed Oct 4, 2024
1 parent cba9bc1 commit 91e29dd
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions client/src/app/admin/events/page.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +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>
</>
)
}

0 comments on commit 91e29dd

Please sign in to comment.