Another UI overall. Shift to launchpad, removed sidebar, turned everything into components.

This commit is contained in:
Karmaa
2025-02-25 00:08:38 -06:00
parent b43ca54fa0
commit cf5f0c41eb
6 changed files with 197 additions and 66 deletions
+34
View File
@@ -0,0 +1,34 @@
import {Button} from "@mui/joy";
import PropTypes from 'prop-types';
function Launchpad({ onClose }) {
return (
<div
style={{
position: "fixed",
top: "20%",
left: "20%",
width: "60%",
height: "60%",
backgroundColor: "gray",
zIndex: 1000,
display: "flex",
alignItems: "center",
justifyContent: "center",
borderRadius: "8px",
}}
>
<div className="text-center">
<h2 className="text-2xl font-bold mb-4">Launchpad</h2>
<p className="mb-4">This is your all-in-one launchpad panel.</p>
<Button onClick={onClose}>Close</Button>
</div>
</div>
);
}
Launchpad.propTypes = {
onClose: PropTypes.func.isRequired,
};
export default Launchpad;