// 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 ( modalsModel.popModal()}>
Wave Terminal
Open-Source AI-Native Terminal
Built for Seamless Workflows
Client Version 0.1.8 (20240615-002636)
} > Github } > Website } > Acknowledgements
© {currentDate.getFullYear()} Command Line Inc.
); }; AboutModal.displayName = "AboutModal"; export { AboutModal };