Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add admin events route #790

Merged
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions client/src/app/admin/events/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
"use client"

import { AdminHeading } from "../AdminHeading"

export default function AdminEventsPage() {
return (
<>
<AdminHeading title="Events" />
jeffplays2005 marked this conversation as resolved.
Show resolved Hide resolved
</>
)
}
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
Loading