|
2 | 2 | // SPDX-License-Identifier: Apache-2.0 |
3 | 3 |
|
4 | 4 | import Logo from "@/app/asset/logo.svg"; |
5 | | -import { LinkButton } from "@/app/element/linkbutton"; |
6 | 5 | import { modalsModel } from "@/app/store/modalmodel"; |
7 | 6 | import { Modal } from "./modal"; |
8 | 7 |
|
@@ -37,24 +36,30 @@ const AboutModal = ({}: AboutModalProps) => { |
37 | 36 | Update Channel: {updaterChannel} |
38 | 37 | </div> |
39 | 38 | <div className="section links"> |
40 | | - <LinkButton |
41 | | - className="secondary solid" |
| 39 | + <a |
42 | 40 | href="https://github.com/wavetermdev/waveterm" |
43 | 41 | target="_blank" |
| 42 | + rel="noopener" |
| 43 | + className="inline-flex items-center px-4 py-2 rounded border border-border hover:bg-hoverbg transition-colors duration-200" |
44 | 44 | > |
45 | | - <i className="fa-brands fa-github"></i>Github |
46 | | - </LinkButton> |
47 | | - <LinkButton className="secondary solid" href="https://www.waveterm.dev/" target="_blank"> |
48 | | - <i className="fa-sharp fa-light fa-globe"></i>Website |
49 | | - </LinkButton> |
50 | | - <LinkButton |
51 | | - className="secondary solid" |
| 45 | + <i className="fa-brands fa-github mr-2"></i>Github |
| 46 | + </a> |
| 47 | + <a |
| 48 | + href="https://www.waveterm.dev/" |
| 49 | + target="_blank" |
| 50 | + rel="noopener" |
| 51 | + className="inline-flex items-center px-4 py-2 rounded border border-border hover:bg-hoverbg transition-colors duration-200" |
| 52 | + > |
| 53 | + <i className="fa-sharp fa-light fa-globe mr-2"></i>Website |
| 54 | + </a> |
| 55 | + <a |
52 | 56 | href="https://github.com/wavetermdev/waveterm/blob/main/ACKNOWLEDGEMENTS.md" |
53 | 57 | target="_blank" |
54 | | - rel={"noopener"} |
| 58 | + rel="noopener" |
| 59 | + className="inline-flex items-center px-4 py-2 rounded border border-border hover:bg-hoverbg transition-colors duration-200" |
55 | 60 | > |
56 | | - <i className="fa-sharp fa-light fa-heart"></i>Acknowledgements |
57 | | - </LinkButton> |
| 61 | + <i className="fa-sharp fa-light fa-heart mr-2"></i>Acknowledgements |
| 62 | + </a> |
58 | 63 | </div> |
59 | 64 | <div className="section text-standard">© {currentDate.getFullYear()} Command Line Inc.</div> |
60 | 65 | </div> |
|
0 commit comments