diff --git a/project/frontend/index.html b/project/frontend/index.html index 2f632de..be7861a 100644 --- a/project/frontend/index.html +++ b/project/frontend/index.html @@ -3,15 +3,14 @@ - + - - Create TanStack App - frontend + Pitchbook Extractor
diff --git a/project/frontend/public/favicon.ico b/project/frontend/public/favicon.ico deleted file mode 100644 index a11777c..0000000 Binary files a/project/frontend/public/favicon.ico and /dev/null differ diff --git a/project/frontend/public/logo192.png b/project/frontend/public/logo192.png deleted file mode 100644 index fc44b0a..0000000 Binary files a/project/frontend/public/logo192.png and /dev/null differ diff --git a/project/frontend/public/logo512.png b/project/frontend/public/logo512.png deleted file mode 100644 index a4e47a6..0000000 Binary files a/project/frontend/public/logo512.png and /dev/null differ diff --git a/project/frontend/src/assets/Deka_logo.png b/project/frontend/src/assets/Deka_logo.png new file mode 100644 index 0000000..d1b24f9 Binary files /dev/null and b/project/frontend/src/assets/Deka_logo.png differ diff --git a/project/frontend/src/components/KennzahlenTable.tsx b/project/frontend/src/components/KennzahlenTable.tsx index 4ad51f0..91a2591 100644 --- a/project/frontend/src/components/KennzahlenTable.tsx +++ b/project/frontend/src/components/KennzahlenTable.tsx @@ -226,7 +226,11 @@ export default function KennzahlenTable({ return ( - {row.setting.name} + {row.setting.name} + {row.setting.mandatory && ( + * + )} + { // Only allow inline editing for non-multiple value cells diff --git a/project/frontend/src/components/UploadPage.tsx b/project/frontend/src/components/UploadPage.tsx index e72c9da..b54e7a3 100644 --- a/project/frontend/src/components/UploadPage.tsx +++ b/project/frontend/src/components/UploadPage.tsx @@ -1,11 +1,12 @@ import SettingsIcon from "@mui/icons-material/Settings"; -import { Backdrop, Box, Button, IconButton, Paper } from "@mui/material"; +import { Backdrop, Box, Button, IconButton, Paper, Typography } from "@mui/material"; import { useNavigate, useRouter } from "@tanstack/react-router"; import { useCallback, useEffect, useState } from "react"; import FileUpload from "react-material-file-upload"; import { socket } from "../socket"; import { API_HOST } from "../util/api"; import { CircularProgressWithLabel } from "./CircularProgressWithLabel"; +import DekaLogo from "../assets/Deka_logo.png"; export default function UploadPage() { const [files, setFiles] = useState([]); @@ -87,26 +88,50 @@ export default function UploadPage() { display="flex" flexDirection="column" alignItems="center" - justifyContent="center" + justifyContent="flex-start" height="100vh" bgcolor="white" + pt={3} > + + Company Logo + + navigate({ to: "/config" })}> + + + Pitchbook Extractor + + ); -} +} \ No newline at end of file