Add links to and from historical events page

This commit is contained in:
Regalijan 2024-03-29 01:09:29 -04:00
parent f18d7ea83f
commit 37dd04a6dc
Signed by: regalijan
GPG Key ID: 5D4196DA269EF520
2 changed files with 12 additions and 0 deletions

View File

@ -471,6 +471,14 @@ export default function () {
<Link color="#646cff" href="/book-event" mt="16px" target="_blank">
Book an Event
</Link>
<Link
color="#646cff"
href="/events-team/historical"
mt="8px"
target="_blank"
>
Historical Events
</Link>
{can_approve ? (
<Link color="#646cff" href="/et-members" mb="32px" mt="8px">
Events Team Member Management

View File

@ -7,6 +7,7 @@ import {
Container,
Heading,
HStack,
Link,
NumberDecrementStepper,
NumberIncrementStepper,
NumberInput,
@ -185,6 +186,9 @@ export default function () {
</Button>
</HStack>
<VStack spacing="8">{eventCards}</VStack>
<Link color="#646cff" href="/events-team" mt="16px">
Back to Current Events
</Link>
</Container>
);
}