This commit is contained in:
Michael Quigley 2024-10-29 16:35:47 -04:00
parent 84c1b8cb5b
commit 553c2fe413
No known key found for this signature in database
GPG Key ID: 9B60314A9DD20A62
3 changed files with 3 additions and 3 deletions

View File

@ -14,7 +14,7 @@
<div id="root"></div>
<div id="footer">
<a rel="noopener noreferrer" href="https://zrok.io">
<svg width="100" height="30" viewBox="0 0 100 30" xml:space="preserve" style="clip-rule:evenodd;fill-rule:evenodd;stroke-miterlimit:10" id="svg48" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<svg width="200" height="60" viewBox="0 0 100 30" xml:space="preserve" style="clip-rule:evenodd;fill-rule:evenodd;stroke-miterlimit:10" id="svg48" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<defs id="defs48" /><namedview id="namedview48" pagecolor="#ffffff" bordercolor="#000000" borderopacity="0.25"/>
<g transform="matrix(0.0639619,0,0,0.0388212,-1.65041,-1.44321)" id="g1">
<path d="m 1589.31,230.468 c 0,-106.573 -52.51,-193.096 -117.2,-193.096 H 143.033 c -64.683,0 -117.198,86.523 -117.198,193.096 v 386.191 c 0,106.573 52.515,193.096 117.198,193.096 H 1472.11 c 64.69,0 117.2,-86.523 117.2,-193.096 z" style="fill:#170549" id="path1" />

View File

@ -16,7 +16,7 @@ const NavBar = (props) => {
>
<MenuIcon/>
</IconButton>
<Typography variant="p" component={"div"} sx={{ flexGrow: 1 }} display={{ xs: "none", sm: "block" }}>
<Typography variant="h5" sx={{ flexGrow: 1 }} display={{ xs: "none", sm: "none", md: "block" }}>
zrok Agent { props.version !== "" ? " | " + props.version : ""}
</Typography>
<Grid2 container sx={{ flexGrow: 1 }}>

View File

@ -10,5 +10,5 @@ createRoot(document.getElementById('root')).render(
<ThemeProvider theme={createTheme(themeOptions)}>
<AgentUi />
</ThemeProvider>
</StrictMode>,
</StrictMode>
);