-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
3 changed files
with
110 additions
and
119 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,8 @@ | ||
"use client"; | ||
|
||
import FullCalendar from "@fullcalendar/react"; | ||
import timeGridPlugin from "@fullcalendar/timegrid"; // a plugin! | ||
import InfoIcon from "@mui/icons-material/Info"; | ||
import { | ||
Button, | ||
Card, | ||
Link, | ||
Modal, | ||
ModalBody, | ||
|
@@ -14,9 +11,9 @@ import { | |
ModalHeader, | ||
useDisclosure, | ||
} from "@nextui-org/react"; | ||
import moment from "moment"; | ||
import packageInfo from "../package.json"; | ||
|
||
export default function FooterInfo(props: any) { | ||
export default function FooterInfo() { | ||
const { isOpen, onOpen, onClose } = useDisclosure(); | ||
|
||
const handleOpen = () => { | ||
|
@@ -52,7 +49,7 @@ export default function FooterInfo(props: any) { | |
isExternal | ||
className="text-[#f46523]" | ||
href="mailto:[email protected]" | ||
title="Sccs Staff Email" | ||
title="SCCS Staff Email" | ||
> | ||
email us. | ||
</Link> | ||
|
@@ -70,8 +67,9 @@ export default function FooterInfo(props: any) { | |
</Link> | ||
</div> | ||
<br /> | ||
<span className="text-xs mt-3 "> | ||
© 2024 Swarthmore College Computer Society | v2.0.0 | ||
<span className="text-sm mt-3 "> | ||
© 2024 Swarthmore College Computer Society | v | ||
{packageInfo.version} | ||
</span> | ||
</div> | ||
</ModalBody> | ||
|
Oops, something went wrong.