fix: favicon and icon on every page

This commit is contained in:
theoleuthardt 2025-02-08 15:44:09 +01:00
parent 8793a3954e
commit 4f119ca750
11 changed files with 9 additions and 12 deletions

View file

@ -1,6 +1,6 @@
import React from "react";
import Image from "next/image";
import LOGO from "../assets/logo/icons8-toolbox-64.svg";
import LOGO from "../assets/werkzeugkasten.svg";
interface NavProps {
className?: string;
@ -10,15 +10,9 @@ interface NavProps {
const Navbar = (props: NavProps) => {
return (
<div className={`h-18 w-full p-3 ` + props.className}>
<nav className="bg-black text-white font-bold flex flex-row items-center justify-between">
<nav className="h-14 bg-black text-white font-bold flex flex-row items-center justify-between">
<div className="justify-items-start flex flex-1 flex-row items-center">
<Image
src={LOGO}
alt={""}
width={64}
height={64}
className="invert"
/>
<Image src={LOGO} alt="" width={70} height={70} className="invert" />
<div className="text-white text-2xl ml-5">werkzeugkiste.</div>
</div>
<div className="flex flex-auto justify-center">