summaryrefslogtreecommitdiff
path: root/src/components/DocumentationButton.tsx
diff options
context:
space:
mode:
authorKurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com>2025-07-29 07:53:45 -0700
committerGitHub <noreply@github.com>2025-07-29 10:53:45 -0400
commit0b5e71fe916e92ef9ecf7de91ca43371c4bd6d25 (patch)
tree30793600da162d9d8fcc63cddeebb1e5a0b058cb /src/components/DocumentationButton.tsx
parent526e4e590bb0125f7f7a08e214986afec73e7439 (diff)
downloadDecky-Framegen-0b5e71fe916e92ef9ecf7de91ca43371c4bd6d25.tar.gz
Decky-Framegen-0b5e71fe916e92ef9ecf7de91ca43371c4bd6d25.zip
wording and layout tweaks (#125)v0.11.8
* wording and layout tweaks * red in remove button * reorganize frontend components * fix ld preload permissions issue for decky 3.1.10 * bump ver
Diffstat (limited to 'src/components/DocumentationButton.tsx')
-rw-r--r--src/components/DocumentationButton.tsx41
1 files changed, 0 insertions, 41 deletions
diff --git a/src/components/DocumentationButton.tsx b/src/components/DocumentationButton.tsx
deleted file mode 100644
index 7069bc2..0000000
--- a/src/components/DocumentationButton.tsx
+++ /dev/null
@@ -1,41 +0,0 @@
-import { PanelSection, PanelSectionRow, ButtonItem } from "@decky/ui";
-import { FaClipboard, FaBook } from "react-icons/fa";
-
-export function DocumentationButton() {
- const handleDocClick = () => {
- window.open("https://github.com/xXJSONDeruloXx/Decky-Framegen/wiki", "_blank");
- };
-
- const handleOptiScalerClick = () => {
- window.open("https://github.com/optiscaler/OptiScaler/wiki", "_blank");
- };
-
- return (
- <PanelSection>
- {/*
- <PanelSectionRow>
- <ButtonItem
- layout="below"
- onClick={handleDocClick}
- >
- <div style={{ display: "flex", alignItems: "center", gap: "8px" }}>
- <FaClipboard />
- <div>Copy Launch Command</div>
- </div>
- </ButtonItem>
- </PanelSectionRow>
- */}
- <PanelSectionRow>
- <ButtonItem
- layout="below"
- onClick={handleOptiScalerClick}
- >
- <div style={{ display: "flex", alignItems: "center", gap: "8px" }}>
- <FaBook />
- <div>OptiScaler Wiki</div>
- </div>
- </ButtonItem>
- </PanelSectionRow>
- </PanelSection>
- );
-}