// 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 { isDev } from "@/util/isdev"; import { useState } from "react"; import { getApi } from "../store/global"; import "./about.less"; interface AboutModalProps {} const AboutModal = ({}: AboutModalProps) => { const currentDate = new Date(); const [details] = useState(() => getApi().getAboutModalDetails()); const [updaterChannel] = useState(() => getApi().getUpdaterChannel()); return ( modalsModel.popModal()}>
Wave Terminal
Open-Source AI-Native Terminal
Built for Seamless Workflows
Client Version {details.version} ({isDev() ? "dev-" : ""} {details.buildTime})
Update Channel: {updaterChannel}
} > Github } > Website } > Acknowledgements
© {currentDate.getFullYear()} Command Line Inc.
); }; AboutModal.displayName = "AboutModal"; export { AboutModal };