mirror of
https://github.com/wavetermdev/waveterm
synced 2026-05-23 00:38:28 +00:00
update modal buttons (#1993)
This commit is contained in:
parent
8d9e4b8dfd
commit
7d2c3a3f2d
1 changed files with 18 additions and 13 deletions
|
|
@ -2,7 +2,6 @@
|
|||
// SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
import Logo from "@/app/asset/logo.svg";
|
||||
import { LinkButton } from "@/app/element/linkbutton";
|
||||
import { modalsModel } from "@/app/store/modalmodel";
|
||||
import { Modal } from "./modal";
|
||||
|
||||
|
|
@ -37,24 +36,30 @@ const AboutModal = ({}: AboutModalProps) => {
|
|||
Update Channel: {updaterChannel}
|
||||
</div>
|
||||
<div className="section links">
|
||||
<LinkButton
|
||||
className="secondary solid"
|
||||
<a
|
||||
href="https://github.com/wavetermdev/waveterm"
|
||||
target="_blank"
|
||||
rel="noopener"
|
||||
className="inline-flex items-center px-4 py-2 rounded border border-border hover:bg-hoverbg transition-colors duration-200"
|
||||
>
|
||||
<i className="fa-brands fa-github"></i>Github
|
||||
</LinkButton>
|
||||
<LinkButton className="secondary solid" href="https://www.waveterm.dev/" target="_blank">
|
||||
<i className="fa-sharp fa-light fa-globe"></i>Website
|
||||
</LinkButton>
|
||||
<LinkButton
|
||||
className="secondary solid"
|
||||
<i className="fa-brands fa-github mr-2"></i>Github
|
||||
</a>
|
||||
<a
|
||||
href="https://www.waveterm.dev/"
|
||||
target="_blank"
|
||||
rel="noopener"
|
||||
className="inline-flex items-center px-4 py-2 rounded border border-border hover:bg-hoverbg transition-colors duration-200"
|
||||
>
|
||||
<i className="fa-sharp fa-light fa-globe mr-2"></i>Website
|
||||
</a>
|
||||
<a
|
||||
href="https://github.com/wavetermdev/waveterm/blob/main/ACKNOWLEDGEMENTS.md"
|
||||
target="_blank"
|
||||
rel={"noopener"}
|
||||
rel="noopener"
|
||||
className="inline-flex items-center px-4 py-2 rounded border border-border hover:bg-hoverbg transition-colors duration-200"
|
||||
>
|
||||
<i className="fa-sharp fa-light fa-heart"></i>Acknowledgements
|
||||
</LinkButton>
|
||||
<i className="fa-sharp fa-light fa-heart mr-2"></i>Acknowledgements
|
||||
</a>
|
||||
</div>
|
||||
<div className="section text-standard">© {currentDate.getFullYear()} Command Line Inc.</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in a new issue