mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-13 14:31:10 -05:00
22 lines
519 B
TypeScript
22 lines
519 B
TypeScript
import { Button } from "@chakra-ui/button";
|
|
import { Box } from "@chakra-ui/layout";
|
|
import { Trans } from "@lingui/macro";
|
|
import SuggestionVouchModal from "./SuggestionVouchModal";
|
|
|
|
export interface PlusHomePageProps {}
|
|
|
|
const PlusHomePage: React.FC<PlusHomePageProps> = () => {
|
|
return (
|
|
<>
|
|
<SuggestionVouchModal
|
|
canSuggest={true}
|
|
canVouch={false}
|
|
userPlusMembershipTier={1}
|
|
/>
|
|
<Box>No suggestions yet for this month</Box>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default PlusHomePage;
|