import { GetStaticProps } from "next"; import { getCurrentTerm, getProps } from "@/lib/events"; import Term, { Props } from "./[year]/[term]/index"; export default Term; export const getStaticProps: GetStaticProps = async () => { const curTerm = getCurrentTerm(); return { props: await getProps(curTerm.year, curTerm.term) }; };