mirror of
https://github.com/theoleuthardt/werkzeugkiste.git
synced 2026-06-13 09:37:53 +00:00
feat: start page tool overview with dynamic rendering
This commit is contained in:
parent
41286d4691
commit
f7b0538ac7
3 changed files with 46 additions and 2 deletions
|
|
@ -3,12 +3,13 @@ import Image from "next/image";
|
|||
import LOGO from "../assets/logo/icons8-toolbox-64.svg";
|
||||
|
||||
interface NavProps {
|
||||
className?: string;
|
||||
renderHomeLink: boolean;
|
||||
}
|
||||
|
||||
const navbar = (props: NavProps) => {
|
||||
return (
|
||||
<div className="h-18 w-full p-3">
|
||||
<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">
|
||||
<div className="justify-items-start flex flex-1 flex-row items-center">
|
||||
<Image
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue