diff --git a/src/renderer/src/modules/settings/tabs/about.tsx b/src/renderer/src/modules/settings/tabs/about.tsx index 531eb5183..39268fd30 100644 --- a/src/renderer/src/modules/settings/tabs/about.tsx +++ b/src/renderer/src/modules/settings/tabs/about.tsx @@ -1,13 +1,10 @@ -import { repository } from "@pkg" +import { license, repository } from "@pkg" import { Logo } from "@renderer/components/icons/logo" import { StyledButton } from "@renderer/components/ui/button" export const SettingAbout = () => (
+ {APP_NAME} + {" "} + is a free and open-source project. It is licensed under the + {" "} + {license} + {" "} + License. +
+ ++ {APP_NAME} + {" "} + ( + {GIT_COMMIT_SHA.slice(0, 7).toUpperCase()} + ) + {" "} + currently early in development. If you have any feedback or + suggestions, please feel free to + {" "} + + open an issue + {" "} + + + {" "} + on the GitHub. +
)