mirror of
https://github.com/theoleuthardt/werkzeugkiste.git
synced 2026-06-13 09:37:53 +00:00
fix: favicon and icon on every page
This commit is contained in:
parent
8793a3954e
commit
4f119ca750
11 changed files with 9 additions and 12 deletions
|
|
@ -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">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue