mirror of
https://github.com/wavetermdev/waveterm.git
synced 2024-12-22 16:48:23 +01:00
65 lines
2.4 KiB
TypeScript
65 lines
2.4 KiB
TypeScript
// Copyright 2024, Command Line Inc.
|
|
// 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";
|
|
|
|
import "./about.less";
|
|
|
|
interface AboutModalProps {}
|
|
|
|
const AboutModal = ({}: AboutModalProps) => {
|
|
const currentDate = new Date();
|
|
|
|
return (
|
|
<Modal className="about-modal" onClose={() => modalsModel.popModal()}>
|
|
<div className="section-wrapper">
|
|
<div className="section logo-section">
|
|
<Logo />
|
|
<div className="app-name">Wave Terminal</div>
|
|
<div className="text-standard">
|
|
Open-Source AI-Native Terminal
|
|
<br />
|
|
Built for Seamless Workflows
|
|
</div>
|
|
</div>
|
|
<div className="section text-standard">Client Version 0.1.8 (20240615-002636)</div>
|
|
<div className="section">
|
|
<LinkButton
|
|
className="secondary solid"
|
|
href="https://github.com/wavetermdev/waveterm"
|
|
target="_blank"
|
|
leftIcon={<i className="fa-brands fa-github"></i>}
|
|
>
|
|
Github
|
|
</LinkButton>
|
|
<LinkButton
|
|
className="secondary solid"
|
|
href="https://www.waveterm.dev/"
|
|
target="_blank"
|
|
leftIcon={<i className="fa-sharp fa-light fa-globe"></i>}
|
|
>
|
|
Website
|
|
</LinkButton>
|
|
<LinkButton
|
|
className="secondary solid"
|
|
href="https://github.com/wavetermdev/waveterm/blob/main/acknowledgements/README.md"
|
|
target="_blank"
|
|
rel={"noopener"}
|
|
leftIcon={<i className="fa-sharp fa-light fa-heart"></i>}
|
|
>
|
|
Acknowledgements
|
|
</LinkButton>
|
|
</div>
|
|
<div className="section text-standard">© {currentDate.getFullYear()} Command Line Inc.</div>
|
|
</div>
|
|
</Modal>
|
|
);
|
|
};
|
|
|
|
AboutModal.displayName = "AboutModal";
|
|
|
|
export { AboutModal };
|