-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add "maintained by SIPB" badge (#80)
It was suggested a while back that we add a "maintained by SIPB" badge to Hydrant; of course, this is all the more relevant now that the spring 2025 listings are up and lots of people are using Hydrant. This is modelled after the DormSoup project: https://github.com/DormSoup/dormsoup/blob/main/app/components/SIPBLogo.tsx
- Loading branch information
Showing
3 changed files
with
29 additions
and
2 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,25 @@ | ||
import { Button, Image } from "@chakra-ui/react"; | ||
|
||
export function SIPBLogo() { | ||
return ( | ||
<a | ||
href="https://sipb.mit.edu/" | ||
target="_blank" | ||
rel="noreferrer" | ||
> | ||
<Button | ||
colorScheme="gray" | ||
rightIcon={ | ||
<Image | ||
src="/fuzzball.png" | ||
alt="SIPB Logo" | ||
height={6} | ||
/> | ||
} | ||
size="sm" | ||
> | ||
Maintained by SIPB | ||
</Button> | ||
</a> | ||
); | ||
} |