Logo und Favicon hinzugefügt
This commit is contained in:
@@ -2,7 +2,7 @@
|
|||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
<link rel="icon" type="image/svg+xml" href="favicon.png" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
<title>Digitaler Produktionsshop</title>
|
<title>Digitaler Produktionsshop</title>
|
||||||
</head>
|
</head>
|
||||||
|
|||||||
BIN
01-frontend/public/favicon.png
Executable file
BIN
01-frontend/public/favicon.png
Executable file
Binary file not shown.
|
After Width: | Height: | Size: 54 KiB |
BIN
01-frontend/src/assets/logo/Blume-logo.png
Normal file
BIN
01-frontend/src/assets/logo/Blume-logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 91 KiB |
@@ -22,6 +22,8 @@ import { fetchItemList } from '../query/Queries';
|
|||||||
import LoginDialog from './LoginDialog';
|
import LoginDialog from './LoginDialog';
|
||||||
import './NavBar.css';
|
import './NavBar.css';
|
||||||
import { useBasket } from '../BasketProvider';
|
import { useBasket } from '../BasketProvider';
|
||||||
|
import logo from '../../assets/logo/Blume-logo.png';
|
||||||
|
|
||||||
|
|
||||||
export default function NavBar() {
|
export default function NavBar() {
|
||||||
const { t } = useTranslation();
|
const { t } = useTranslation();
|
||||||
@@ -147,22 +149,29 @@ export default function NavBar() {
|
|||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<Box sx={{ display: "flex", alignItems: "center", minWidth: "0px" }}>
|
<Box sx={{ display: "flex", alignItems: "center", minWidth: "0px" }}>
|
||||||
<Typography
|
<Box sx={{ display: 'flex', alignItems: 'center' }}>
|
||||||
variant="h6"
|
<img
|
||||||
noWrap
|
src={logo}
|
||||||
component="a"
|
alt="DPShop Logo"
|
||||||
href="/"
|
style={{ height: '40px', marginRight: '12px' }}
|
||||||
sx={{
|
/>
|
||||||
fontFamily: "monospace",
|
<Typography
|
||||||
fontWeight: 700,
|
variant="h6"
|
||||||
letterSpacing: ".3rem",
|
noWrap
|
||||||
color: "white",
|
component="a"
|
||||||
textDecoration: "none",
|
href="/"
|
||||||
ml: 1,
|
sx={{
|
||||||
}}
|
fontFamily: "monospace",
|
||||||
>
|
fontWeight: 700,
|
||||||
Digitaler Produktionsshop
|
letterSpacing: ".3rem",
|
||||||
</Typography>
|
color: "white",
|
||||||
|
textDecoration: "none",
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
Digitaler Produktionsshop
|
||||||
|
</Typography>
|
||||||
|
</Box>
|
||||||
|
|
||||||
</Box>
|
</Box>
|
||||||
|
|
||||||
<Box sx={{ flexGrow: 1, display: "flex", justifyContent: "center", px: 3 }}>
|
<Box sx={{ flexGrow: 1, display: "flex", justifyContent: "center", px: 3 }}>
|
||||||
|
|||||||
Reference in New Issue
Block a user