import { Button } from "@nextui-org/react"; import { useNavigate } from "react-router-dom"; export default function HBContestPage() { const navigate = useNavigate(); const handleJoinClick = () => { let accessToken = localStorage.getItem("accessToken"); if (!accessToken) { setTimeout(() => { navigate("/signin"); }, 1000); } else { navigate("new-submission"); } }; return (

Home Bill Contest

This contest is to encourage residents to reduce the use of electricity and water usage. This contest would be won by the person with the lowest overall bill average. Join us in this important effort to create a more sustainable future for everyone.{" "} Participants would be required to input and upload their bills into the form to ensure integrity and honesty.{" "}

Winners

There will 3 winners for each month. Each winner will receive random food vouchers.

1st → 3 vouchers

2nd → 2 vouchers

3rd → 1 voucher

); }