/** Bottom nav: Home | Plan | gold FAB Log | Daily | Settings. History stays reachable from Home (“See all”). Log FAB remains one tap. */ import { CalendarClock, CalendarDays, House, Plus, Settings } from "lucide-preact"; import { Pressable } from "./Pressable"; import { navigate, type Route } from "../router"; type TabName = "home" | "plan" | "daily" | "settings"; const TABS: { name: TabName; label: string; path: string; Icon: typeof House; }[] = [ { name: "home", label: "Home", path: "/", Icon: House }, { name: "plan", label: "Plan", path: "/plan", Icon: CalendarClock }, { name: "daily", label: "Daily", path: "/daily", Icon: CalendarDays }, { name: "settings", label: "Settings", path: "/settings", Icon: Settings }, ]; export function TabBar({ route }: { route: Route }) { const left = TABS.slice(0, 2); const right = TABS.slice(2); return ( ); }