Skip to content

Commit

Permalink
chore: Add bug report, feature request, question button into help page (
Browse files Browse the repository at this point in the history
  • Loading branch information
정현 committed Mar 30, 2024
2 parents b02e6a2 + 287df72 commit 023abb1
Showing 1 changed file with 26 additions and 2 deletions.
28 changes: 26 additions & 2 deletions web/src/pages/HelpPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,39 @@ const HelpPage = () => {
window.open('https://github.com/yurucam/exif-frame', '_blank');
}}
>
Go to GitHub Repository
View Source Code
</ListButton>

<ListButton
onClick={() => {
window.open('https://github.com/yurucam/exif-frame/issues/new/choose', '_blank');
}}
>
Bug Report
</ListButton>

<ListButton
onClick={() => {
window.open('https://github.com/yurucam/exif-frame/issues/new/choose', '_blank');
}}
>
Feature Request
</ListButton>

<ListButton
onClick={() => {
window.open('https://github.com/yurucam/exif-frame/issues/new/choose', '_blank');
}}
>
Question
</ListButton>

<ListButton
onClick={() => {
window.open('mailto:[email protected]?subject=[EXIF Frame]', '_blank');
}}
>
Contact to Developer
Send Email to Developer
</ListButton>
</List>
</>
Expand Down

0 comments on commit 023abb1

Please sign in to comment.