Bootssymbol hinzugefügt
Test and publish container images / test (push) Successful in 2m20s
Test and publish container images / publish (push) Failing after 4s

This commit is contained in:
BuTzZ
2026-07-26 12:31:49 +02:00
parent c9a20aacd7
commit 55ce94066e
19 changed files with 1969 additions and 122 deletions
+11 -2
View File
@@ -1,6 +1,14 @@
import { Anchor, Bell, CloudSun, Route as RouteIcon, type LucideIcon } from "lucide-react";
import {
Anchor,
Bell,
CloudSun,
Route as RouteIcon,
Ship,
type LucideIcon
} from "lucide-react";
export const NAVIGATION_TOOL_ORDER = [
"boat",
"anchor",
"conditions",
"upcoming",
@@ -18,6 +26,7 @@ type NavigationToolDefinition = {
};
const NAVIGATION_TOOLS: readonly NavigationToolDefinition[] = [
{ id: "boat", label: "Mein Boot", Icon: Ship },
{ id: "anchor", label: "Ankerwache", Icon: Anchor },
{ id: "conditions", label: "Wetter und Tide", Icon: CloudSun },
{ id: "upcoming", label: "Als Nächstes", Icon: Bell },
@@ -43,7 +52,7 @@ export function NavigationToolRail({
disabledTools = {},
workspaceId = "navigation-workspace",
className,
ariaLabel = "Kartenwerkzeuge"
ariaLabel = "Navigationswerkzeuge"
}: NavigationToolRailProps) {
return (
<nav className={classNames("navigation-tool-rail", className)} aria-label={ariaLabel}>