navbar and map included

added a basic navbar and first map implementation
This commit is contained in:
uwebeschde
2025-02-02 16:28:16 +01:00
parent 29f9cd7941
commit 951714c5c6
14 changed files with 865 additions and 72 deletions

View File

@@ -1,35 +0,0 @@
import "../globals.css";
export default function Navbar() {
return (
<div className="navbar bg-base-100 shadow-sm">
<div className="flex-1">
<a className="btn btn-ghost text-xl">daisyUI</a>
</div>
<div className="flex gap-2">
<input type="text" placeholder="Search" className="input input-bordered w-24 md:w-auto" />
<div className="dropdown dropdown-end">
<div tabIndex={0} role="button" className="btn btn-ghost btn-circle avatar">
<div className="w-10 rounded-full">
<img
alt="Tailwind CSS Navbar component"
src="https://img.daisyui.com/images/stock/photo-1534528741775-53994a69daeb.webp" />
</div>
</div>
<ul
tabIndex={0}
className="menu menu-sm dropdown-content bg-base-100 rounded-box z-1 mt-3 w-52 p-2 shadow">
<li>
<a className="justify-between">
Profile
<span className="badge">New</span>
</a>
</li>
<li><a>Settings</a></li>
<li><a>Logout</a></li>
</ul>
</div>
</div>
</div>
);
}