Skip to content

Commit

Permalink
chore: add report bug button (#321)
Browse files Browse the repository at this point in the history
* chore: add report bug button

* Update apps/maestro/src/ui/layouts/MainLayout/MainMenu.tsx

---------

Co-authored-by: Canh Trinh <canhtrinh@users.noreply.github.com>
  • Loading branch information
npty and canhtrinh authored Apr 5, 2024
1 parent 3bbeee8 commit b0a2ec8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion apps/maestro/src/ui/layouts/MainLayout/MainLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ const LayoutFooter = () => (
{item.kind === "link" ? (
<Link
href={item.href}
className="hover:text-accent inline-flex hover:underline lg:uppercase"
className="hover:text-accent inline-flex items-center gap-1 hover:underline lg:uppercase"
rel={item.external ? "noopener noreferrer" : undefined}
target={item.external ? "_blank" : undefined}
>
Expand Down
6 changes: 6 additions & 0 deletions apps/maestro/src/ui/layouts/MainLayout/MainMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,12 @@ export const BOTTOM_MENU_ITEMS: Menuitem[] = [
</Content.Wrapper>
),
},
{
kind: "link",
label: "Report Feedback",
href: "https://axelar.zendesk.com/hc/en-us/requests/new",
external: true,
},
];

const FAQ_ITEMS = [
Expand Down

0 comments on commit b0a2ec8

Please sign in to comment.