Skip to content

Feature/Rate App #38

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: next
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion client/modules/layout/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,12 @@ export const Header = () => {
</Link>

<HeaderSeparator />

<HeaderLink
href="https://app-center.openintents.org/appco/1092/review"
rel="noopener noreferrer"
>
Rate App!
</HeaderLink>
<HeaderLink href="/discover">Discover</HeaderLink>
{/* TODO how to use */}
{/* <HeaderLink href="/b">How to use?</HeaderLink> */}
Expand Down
16 changes: 13 additions & 3 deletions client/modules/layout/components/MobileMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,19 @@ export const MobileMenu = ({
<MobileMenuLink href="/discover">Discover</MobileMenuLink>
</MobileMenuListItem>
{user && (
<MobileMenuListItem>
<MobileMenuLink href="/me">My stories</MobileMenuLink>
</MobileMenuListItem>
<>
<MobileMenuListItem>
<MobileMenuLink href="/me">My stories</MobileMenuLink>
</MobileMenuListItem>
<MobileMenuListItem>
<MobileMenuLink
href="https://app-center.openintents.org/appco/1092/review"
rel="noopener noreferrer"
>
Rate App!
</MobileMenuLink>
</MobileMenuListItem>
</>
)}
{!user && (
<MobileMenuListItem>
Expand Down