import PlusHomePage from "components/plus/PlusHomePage"; // export const getStaticProps: GetStaticProps = async ({ // params, // }) => { // const getSlug = async () => { // const slug = Array.isArray(params!.slug) ? params!.slug : []; // if (slug.length === 3) { // return slug; // } // if (slug.length > 0) { // return []; // } // const mostRecent = await plusService.getMostRecentVotingWithResultsMonth(); // return ["1", mostRecent.year, mostRecent.month]; // }; // const [tier, year, month] = (await getSlug()).map((param) => Number(param)); // if (!tier) return { notFound: true }; // const [summaries, monthsWithData] = await Promise.all([ // plusService.getVotingSummariesByMonthAndTier({ // tier: tier as any, // year, // month, // }), // plusService.getDistinctSummaryMonths(), // ]); // if (!summaries.length) return { notFound: true }; // return { // props: { summaries, monthsWithData }, // }; // }; export default PlusHomePage;