feat: start page tool overview with dynamic rendering

This commit is contained in:
theoleuthardt 2025-02-08 13:35:33 +01:00
parent 41286d4691
commit f7b0538ac7
3 changed files with 46 additions and 2 deletions

View file

@ -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