keanacobarde / on-paper

Spend your money OnPaper first!
0 stars 0 forks source link

MVP - READ - HOME PAGE COMPONENT #8

Closed keanacobarde closed 9 months ago

keanacobarde commented 10 months ago

User Story

I, as the full-time worker, full-time student who is looking to manage and optimize my spending habits as easily as possible - need a home page that includes ONLY the most essential components of the application. When first logging into the site, will be met with a home page. This home page is split into two sections. The hero section and the categories section. This is the home page, where all the central functionality of the site is reachable. These features pertain to the expense tracking portion of the site and the category creation portion of the site.

Acceptance Criteria

WIREFRAME image

HERO SECTION

Dependencies

5 - This is a crucial step in ensuring that all the necessary data is rendered properly.

Dev Notes

export default function Members() { const [members, setMembers] = useState([]);

const { user } = useAuth();

const getAllTheMembers = () => { getMembers(user.uid).then(setMembers); };

useEffect(() => { getAllTheMembers(); }, []);

return ( <>

TEAM

{members.map((member) => )}
</>

); }

keanacobarde commented 10 months ago

REMAINING TASKS

keanacobarde commented 9 months ago

FULLY IMPLEMENTED ALL FEATURES LISTED ON THE HOME PAGE. CLOSING TICKET.