Added New navbar

This commit is contained in:
monilprajapati
2025-03-04 00:13:31 +05:30
parent 2e73f772e6
commit 4a95979373
25 changed files with 2745 additions and 3 deletions
+15 -1
View File
@@ -62,6 +62,7 @@ import Drift from "react-driftjs";
import { AppContext } from './context/ContextApi.jsx';
import Workflows2 from "./views/Workflows2.jsx";
import AppExplorer from "./views/AppExplorer.jsx";
import Navbar from "./views/Navbar.jsx";
// Production - backend proxy forwarding in nginx
var globalUrl = window.location.origin;
@@ -213,7 +214,20 @@ const App = (message, props) => {
{ window?.location?.pathname === "/" || window?.location?.pathname === "/training" || !(isLoggedIn && isLoaded) ? (
<div style={{ minHeight: 68, maxHeight: 68 }}>
<Header
{/* <Header
notifications={notifications}
setNotifications={setNotifications}
userdata={userdata}
cookies={cookies}
removeCookie={removeCookie}
isLoaded={isLoaded}
globalUrl={globalUrl}
setIsLoggedIn={setIsLoggedIn}
isLoggedIn={isLoggedIn}
curpath={curpath}
{...props}
/> */}
<Navbar
notifications={notifications}
setNotifications={setNotifications}
userdata={userdata}
+2 -2
View File
@@ -632,8 +632,8 @@ const LoginPage = props => {
<form onSubmit={onSubmit} style={{ margin: 15, width: isMobile ? "100%" : "360px", width: "max-content", overflow: "hidden" }}>
<img
style={{
height: 44,
width: isMobile ? "100%" : 44,
height: isMobile ? 44 : 75,
width: isMobile ? 44 : 75,
paddingBottom: isMobile ? null : 40
}}
src="images/logos/orange_logo.svg"
File diff suppressed because it is too large Load Diff