Kimberly-Hart / East-Barley

1 stars 1 forks source link

Home Page #62

Closed aclai4067 closed 4 years ago

aclai4067 commented 4 years ago

Developer Story

As a user, when I navigate to the homepage after age verification, I should see the the homepage.

AC

WHEN I navigate to the homepage from the age verification modal THEN I should see the homepage set up with parallax scrolling. AND if the age is verified older then 21, then the user will see sections for about, beer, whiskey, books, and community. OR if the age is not 21, then the user will see sections for about, books and community.

Dev Notes

.aboutDetails { Any styling you may need for the semantic UI design starts here. }

- [ ] Repeat the last 4 checkboxes for each of the last 4 shared components (beer, whiskey, books, community).
- [ ] Since we will want to display data on the Homepage based on if the user is 21, the final Homepage.js file should look like this.

class HomePage extends React.Component { state = { verified = [ ] }

render() { return { (verified) ?

          : 
             <div className="homepage">
                   <AboutHome />
                   <BooksHome />
                   <CommunityHome />
             </div>
  }

} }



# Updates

*

# Which ticket in Notion does this relate to

*
aclai4067 commented 4 years ago

image