+ //
+ //
+
+ // {ydomain && xdomain ? ( // Abscissa refers to x axis and ordinate refers to the y axis
+ //
+ //
+ //
+ //
+ //
+ //
+ //
+ // ) : (
+ // <>
+ //
+ // Please upload a valid '.dat' file in the first and a '.stk' file
+ // in the second.
+ //
+ //
+ // >
+ // )}
+ //
+ // >
);
}
diff --git a/src/components/Header.tsx b/src/components/Header.tsx
new file mode 100644
index 0000000..f23d01c
--- /dev/null
+++ b/src/components/Header.tsx
@@ -0,0 +1,66 @@
+import AppBar from "@mui/material/AppBar";
+import Toolbar from "@mui/material/Toolbar";
+import Typography from "@mui/material/Typography";
+
+import ListItemButton from "@mui/material/ListItemButton";
+import ListItem from "@mui/material/ListItem";
+import List from "@mui/material/List";
+import ListItemText from "@mui/material/ListItemText";
+import Box from "@mui/material/Box";
+import Stack from "@mui/material/Stack";
+import { Checkbox } from "@mui/material";
+
+import { NavLink } from "react-router-dom";
+
+import { MdLightMode, MdDarkMode } from "react-icons/md";
+import ConexsIcon from "./ConexsIcon";
+export default function Header(props: {
+ colorMode: string;
+ toggleColorMode: () => void;
+}) {
+ const navitems = {
+ Home: "/",
+ OrcaInput: "/orcainput",
+ OrcaResult: "/orcaresult",
+ };
+
+ return (
+