## Displaying the footer for a box subscriber
```js
  <Footer
    isNotSubscriber={false}
    isSubscriptionMember={true}
    referralAmount={30}
    homepageUrl='https://www.rocketsofawesome.com' />
```

## Displaying the footer for a non-subscriber
```js
  <Footer
    isNotSubscriber={true}
    isSubscriptionMember={false}
    referralAmount={30}
    homepageUrl='https://www.rocketsofawesome.com' />
```
