-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(room-booking): add "my bookings" page and "rules"
- Loading branch information
1 parent
c75afae
commit eac30f9
Showing
9 changed files
with
334 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import { Topbar } from "@/components/layout/Topbar.tsx"; | ||
import { BookingPageTabs } from "@/components/room-booking/BookingPageTabs.tsx"; | ||
import { BookingsListPage } from "@/components/room-booking/BookingsListPage.tsx"; | ||
import { createFileRoute } from "@tanstack/react-router"; | ||
import { Helmet } from "react-helmet-async"; | ||
|
||
export const Route = createFileRoute("/_with_menu/room-booking/list")({ | ||
component: () => ( | ||
<div className="flex min-h-full flex-col overflow-y-auto @container/content"> | ||
<Helmet> | ||
<title>Room booking</title> | ||
<meta | ||
name="description" | ||
content="Book auditoriums and meeting rooms in Innopolis University." | ||
/> | ||
</Helmet> | ||
|
||
<Topbar title="Room booking" /> | ||
<BookingPageTabs /> | ||
<BookingsListPage /> | ||
</div> | ||
), | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import { Topbar } from "@/components/layout/Topbar.tsx"; | ||
import { BookingPageTabs } from "@/components/room-booking/BookingPageTabs.tsx"; | ||
import { RoomBookingRules } from "@/components/room-booking/RoomBookingRules.tsx"; | ||
import { createFileRoute } from "@tanstack/react-router"; | ||
import { Helmet } from "react-helmet-async"; | ||
|
||
export const Route = createFileRoute("/_with_menu/room-booking/rules")({ | ||
component: () => ( | ||
<div className="flex min-h-full flex-col overflow-y-auto @container/content"> | ||
<Helmet> | ||
<title>Room booking</title> | ||
<meta | ||
name="description" | ||
content="Book auditoriums and meeting rooms in Innopolis University." | ||
/> | ||
</Helmet> | ||
|
||
<Topbar title="Room booking" /> | ||
<BookingPageTabs /> | ||
<RoomBookingRules /> | ||
</div> | ||
), | ||
}); |
Oops, something went wrong.